Module Name: src
Committed By: christos
Date: Sun Nov 4 22:32:01 UTC 2012
Modified Files:
src/usr.sbin/rwhod: rwhod.c
Log Message:
include <pwd.h>
To generate a diff of this commit:
cvs rdiff -u -r1.39 -r1.40 src/usr.sbin/rwhod/rwhod.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/rwhod/rwhod.c
diff -u src/usr.sbin/rwhod/rwhod.c:1.39 src/usr.sbin/rwhod/rwhod.c:1.40
--- src/usr.sbin/rwhod/rwhod.c:1.39 Wed Aug 31 09:32:41 2011
+++ src/usr.sbin/rwhod/rwhod.c Sun Nov 4 17:32:01 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: rwhod.c,v 1.39 2011/08/31 13:32:41 joerg Exp $ */
+/* $NetBSD: rwhod.c,v 1.40 2012/11/04 22:32:01 christos Exp $ */
/*
* Copyright (c) 1983, 1993
@@ -39,7 +39,7 @@ __COPYRIGHT("@(#) Copyright (c) 1983, 19
#if 0
static char sccsid[] = "@(#)rwhod.c 8.1 (Berkeley) 6/6/93";
#else
-__RCSID("$NetBSD: rwhod.c,v 1.39 2011/08/31 13:32:41 joerg Exp $");
+__RCSID("$NetBSD: rwhod.c,v 1.40 2012/11/04 22:32:01 christos Exp $");
#endif
#endif /* not lint */
@@ -58,6 +58,7 @@ __RCSID("$NetBSD: rwhod.c,v 1.39 2011/08
#include <arpa/inet.h>
#include <ctype.h>
+#include <pwd.h>
#include <err.h>
#include <errno.h>
#include <fcntl.h>