Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-7]: src Pull up following revision(s) (requested by sevan in tick...



details:   https://anonhg.NetBSD.org/src/rev/7ccabe70fc07
branches:  netbsd-7
changeset: 800422:7ccabe70fc07
user:      snj <snj%NetBSD.org@localhost>
date:      Mon Feb 19 19:39:52 2018 +0000

description:
Pull up following revision(s) (requested by sevan in ticket #1558):
        sys/fs/msdosfs/msdosfs_fat.c: 1.32
        usr.sbin/makefs/msdos/msdosfs_vfsops.c: 1.11
Need strings.h for ffs()
--
Need strings.h for ffs()
Resolves implict declaration warning of ffs() when building tools via
build.sh

diffstat:

 sys/fs/msdosfs/msdosfs_fat.c           |  5 +++--
 usr.sbin/makefs/msdos/msdosfs_vfsops.c |  3 ++-
 2 files changed, 5 insertions(+), 3 deletions(-)

diffs (46 lines):

diff -r 3adb47529ab6 -r 7ccabe70fc07 sys/fs/msdosfs/msdosfs_fat.c
--- a/sys/fs/msdosfs/msdosfs_fat.c      Mon Feb 19 19:33:06 2018 +0000
+++ b/sys/fs/msdosfs/msdosfs_fat.c      Mon Feb 19 19:39:52 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: msdosfs_fat.c,v 1.28 2013/01/28 00:17:18 christos Exp $        */
+/*     $NetBSD: msdosfs_fat.c,v 1.28.12.1 2018/02/19 19:39:52 snj Exp $        */
 
 /*-
  * Copyright (C) 1994, 1995, 1997 Wolfgang Solfrank.
@@ -52,7 +52,7 @@
 #endif
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: msdosfs_fat.c,v 1.28 2013/01/28 00:17:18 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: msdosfs_fat.c,v 1.28.12.1 2018/02/19 19:39:52 snj Exp $");
 
 /*
  * kernel include files.
@@ -69,6 +69,7 @@
 #include <sys/buf.h>
 #include <sys/vnode.h>         /* to define vattr structure */
 #else
+#include <strings.h>
 #include <ffs/buf.h>
 #endif
 
diff -r 3adb47529ab6 -r 7ccabe70fc07 usr.sbin/makefs/msdos/msdosfs_vfsops.c
--- a/usr.sbin/makefs/msdos/msdosfs_vfsops.c    Mon Feb 19 19:33:06 2018 +0000
+++ b/usr.sbin/makefs/msdos/msdosfs_vfsops.c    Mon Feb 19 19:39:52 2018 +0000
@@ -50,7 +50,7 @@
 #endif
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: msdosfs_vfsops.c,v 1.8 2014/07/09 06:04:16 maxv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: msdosfs_vfsops.c,v 1.8.2.1 2018/02/19 19:39:52 snj Exp $");
 
 #include <sys/param.h>
 
@@ -68,6 +68,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include <util.h>
+#include <strings.h>
 
 #include "makefs.h"
 #include "msdos.h"



Home | Main Index | Thread Index | Old Index