Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-8]: src Pull up following revision(s) (requested by sevan in tick...
details: https://anonhg.NetBSD.org/src/rev/d6d6469c8d39
branches: netbsd-8
changeset: 434597:d6d6469c8d39
user: martin <martin%NetBSD.org@localhost>
date: Sun Feb 04 12:10:48 2018 +0000
description:
Pull up following revision(s) (requested by sevan in ticket #518):
sys/fs/msdosfs/msdosfs_fat.c: revision 1.32
usr.sbin/makefs/msdos/msdosfs_vfsops.c: revision 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 a0f88d19d5b2 -r d6d6469c8d39 sys/fs/msdosfs/msdosfs_fat.c
--- a/sys/fs/msdosfs/msdosfs_fat.c Sat Feb 03 22:17:14 2018 +0000
+++ b/sys/fs/msdosfs/msdosfs_fat.c Sun Feb 04 12:10:48 2018 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: msdosfs_fat.c,v 1.31 2016/05/07 16:43:02 mlelstv Exp $ */
+/* $NetBSD: msdosfs_fat.c,v 1.31.10.1 2018/02/04 12:10:48 martin 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.31 2016/05/07 16:43:02 mlelstv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: msdosfs_fat.c,v 1.31.10.1 2018/02/04 12:10:48 martin 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 a0f88d19d5b2 -r d6d6469c8d39 usr.sbin/makefs/msdos/msdosfs_vfsops.c
--- a/usr.sbin/makefs/msdos/msdosfs_vfsops.c Sat Feb 03 22:17:14 2018 +0000
+++ b/usr.sbin/makefs/msdos/msdosfs_vfsops.c Sun Feb 04 12:10:48 2018 +0000
@@ -50,7 +50,7 @@
#endif
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: msdosfs_vfsops.c,v 1.10 2016/01/30 09:59:27 mlelstv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: msdosfs_vfsops.c,v 1.10.8.1 2018/02/04 12:10:48 martin 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