Module Name: src
Committed By: christos
Date: Sun Apr 24 01:56:44 UTC 2011
Modified Files:
src/lib/libutil: passwd.c
Log Message:
fix freudian slip
To generate a diff of this commit:
cvs rdiff -u -r1.50 -r1.51 src/lib/libutil/passwd.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libutil/passwd.c
diff -u src/lib/libutil/passwd.c:1.50 src/lib/libutil/passwd.c:1.51
--- src/lib/libutil/passwd.c:1.50 Wed Aug 18 04:32:02 2010
+++ src/lib/libutil/passwd.c Sat Apr 23 21:56:44 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: passwd.c,v 1.50 2010/08/18 08:32:02 christos Exp $ */
+/* $NetBSD: passwd.c,v 1.51 2011/04/24 01:56:44 christos Exp $ */
/*
* Copyright (c) 1987, 1993, 1994, 1995
@@ -31,7 +31,7 @@
#include <sys/cdefs.h>
#if defined(LIBC_SCCS) && !defined(lint)
-__RCSID("$NetBSD: passwd.c,v 1.50 2010/08/18 08:32:02 christos Exp $");
+__RCSID("$NetBSD: passwd.c,v 1.51 2011/04/24 01:56:44 christos Exp $");
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>
@@ -172,7 +172,7 @@
}
if (WIFEXITED(pstat)) {
if (WEXITSTATUS(pstat) != 0) {
- warnx("pwd_mkdb exited with static %d",
+ warnx("pwd_mkdb exited with status %d",
WEXITSTATUS(pstat));
return -1;
}