Module Name: src Committed By: christos Date: Tue Jan 10 21:06:17 UTC 2017
Modified Files: src/usr.sbin/ypserv/common: ypdb.c Log Message: need <sys/stat.h> To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 src/usr.sbin/ypserv/common/ypdb.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/usr.sbin/ypserv/common/ypdb.c diff -u src/usr.sbin/ypserv/common/ypdb.c:1.11 src/usr.sbin/ypserv/common/ypdb.c:1.12 --- src/usr.sbin/ypserv/common/ypdb.c:1.11 Thu Feb 28 22:00:47 2008 +++ src/usr.sbin/ypserv/common/ypdb.c Tue Jan 10 16:06:17 2017 @@ -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>