Source-Changes-HG archive

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

[src/trunk]: src/usr.sbin need <sys/stat.h>



details:   https://anonhg.NetBSD.org/src/rev/523783cfc7d1
branches:  trunk
changeset: 820515:523783cfc7d1
user:      christos <christos%NetBSD.org@localhost>
date:      Tue Jan 10 21:04:06 2017 +0000

description:
need <sys/stat.h>

diffstat:

 usr.sbin/services_mkdb/output_db.c     |  5 +++--
 usr.sbin/services_mkdb/services_mkdb.c |  5 +++--
 usr.sbin/syslogd/tls.c                 |  5 +++--
 usr.sbin/ypserv/common/ypdb.c          |  5 +++--
 4 files changed, 12 insertions(+), 8 deletions(-)

diffs (88 lines):

diff -r e8e697f86d3d -r 523783cfc7d1 usr.sbin/services_mkdb/output_db.c
--- a/usr.sbin/services_mkdb/output_db.c        Tue Jan 10 21:03:36 2017 +0000
+++ b/usr.sbin/services_mkdb/output_db.c        Tue Jan 10 21:04:06 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: output_db.c,v 1.1 2010/04/25 00:54:46 joerg Exp $      */
+/*     $NetBSD: output_db.c,v 1.2 2017/01/10 21:04:58 christos Exp $   */
 
 /*-
  * Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -31,10 +31,11 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: output_db.c,v 1.1 2010/04/25 00:54:46 joerg Exp $");
+__RCSID("$NetBSD: output_db.c,v 1.2 2017/01/10 21:04:58 christos Exp $");
 #endif /* not lint */
 
 #include <sys/param.h>
+#include <sys/stat.h>
 
 #include <assert.h>
 #include <db.h>
diff -r e8e697f86d3d -r 523783cfc7d1 usr.sbin/services_mkdb/services_mkdb.c
--- a/usr.sbin/services_mkdb/services_mkdb.c    Tue Jan 10 21:03:36 2017 +0000
+++ b/usr.sbin/services_mkdb/services_mkdb.c    Tue Jan 10 21:04:06 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: services_mkdb.c,v 1.18 2010/10/07 01:28:50 christos Exp $      */
+/*     $NetBSD: services_mkdb.c,v 1.19 2017/01/10 21:04:06 christos Exp $      */
 
 /*-
  * Copyright (c) 1999 The NetBSD Foundation, Inc.
@@ -31,10 +31,11 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: services_mkdb.c,v 1.18 2010/10/07 01:28:50 christos Exp $");
+__RCSID("$NetBSD: services_mkdb.c,v 1.19 2017/01/10 21:04:06 christos Exp $");
 #endif /* not lint */
 
 #include <sys/param.h>
+#include <sys/stat.h>
 
 #include <assert.h>
 #include <err.h>
diff -r e8e697f86d3d -r 523783cfc7d1 usr.sbin/syslogd/tls.c
--- a/usr.sbin/syslogd/tls.c    Tue Jan 10 21:03:36 2017 +0000
+++ b/usr.sbin/syslogd/tls.c    Tue Jan 10 21:04:06 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: tls.c,v 1.12 2016/02/03 05:34:21 christos Exp $        */
+/*     $NetBSD: tls.c,v 1.13 2017/01/10 21:05:42 christos Exp $        */
 
 /*-
  * Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -45,9 +45,10 @@
  */
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: tls.c,v 1.12 2016/02/03 05:34:21 christos Exp $");
+__RCSID("$NetBSD: tls.c,v 1.13 2017/01/10 21:05:42 christos Exp $");
 
 #ifndef DISABLE_TLS
+#include <sys/stat.h>
 #include "syslogd.h"
 #include "tls.h"
 #include <netinet/in.h>
diff -r e8e697f86d3d -r 523783cfc7d1 usr.sbin/ypserv/common/ypdb.c
--- a/usr.sbin/ypserv/common/ypdb.c     Tue Jan 10 21:03:36 2017 +0000
+++ b/usr.sbin/ypserv/common/ypdb.c     Tue Jan 10 21:04:06 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ypdb.c,v 1.11 2008/02/29 03:00:47 lukem Exp $  */
+/*     $NetBSD: ypdb.c,v 1.12 2017/01/10 21:06:17 christos Exp $       */
 
 /*
  * Copyright (c) 1990, 1993
@@ -38,11 +38,12 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: ypdb.c,v 1.11 2008/02/29 03:00:47 lukem Exp $");
+__RCSID("$NetBSD: ypdb.c,v 1.12 2017/01/10 21:06:17 christos Exp $");
 #endif
 
 #include <sys/param.h>
 #include <sys/types.h>
+#include <sys/stat.h>
 
 #include <db.h>
 #include <err.h>



Home | Main Index | Thread Index | Old Index