summaryrefslogtreecommitdiff
path: root/lib/libutil
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2011-04-24 01:56:44 +0000
committerchristos <christos@NetBSD.org>2011-04-24 01:56:44 +0000
commitfb78be571cc3667bae68ff5fac329fefb80a11bb (patch)
tree786d18c3f9ddb212e40b8db890542dde771d5c33 /lib/libutil
parent331126ec77c45f633d36497f3b84266e8825ac1d (diff)
fix freudian slip
Diffstat (limited to 'lib/libutil')
-rw-r--r--lib/libutil/passwd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libutil/passwd.c b/lib/libutil/passwd.c
index 05f469a4e15..376b08bb050 100644
--- a/lib/libutil/passwd.c
+++ b/lib/libutil/passwd.c
@@ -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 @@ pw_mkdb(username, secureonly)
}
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;
}