summaryrefslogtreecommitdiffstats
path: root/pw
diff options
context:
space:
mode:
authorWolfram Schneider <wosch@FreeBSD.org>1998-02-11 23:31:24 +0000
committerWolfram Schneider <wosch@FreeBSD.org>1998-02-11 23:31:24 +0000
commit3f5eee1cdcdf4ef9bddea461574b73b01c1b28e0 (patch)
treeb721e9ea9de181ac37e8af29749ceb8ba76ee560 /pw
parent915db992527047f57a15af2b1af49bf841b7d78a (diff)
downloadpw-darwin-3f5eee1cdcdf4ef9bddea461574b73b01c1b28e0.tar.gz
pw-darwin-3f5eee1cdcdf4ef9bddea461574b73b01c1b28e0.tar.zst
pw-darwin-3f5eee1cdcdf4ef9bddea461574b73b01c1b28e0.zip
pwd_mkdb option '-c' was renamed to -C some weeks ago.
PR: bin/5715 Submitted by: dannyman <dannyman@arh0300.urh.uiuc.edu>
Diffstat (limited to 'pw')
-rw-r--r--pw/pwupd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/pw/pwupd.c b/pw/pwupd.c
index 0b68266..c42b1fb 100644
--- a/pw/pwupd.c
+++ b/pw/pwupd.c
@@ -26,7 +26,7 @@
#ifndef lint
static const char rcsid[] =
- "$Id$";
+ "$Id: pwupd.c,v 1.6 1997/10/10 06:23:41 charnier Exp $";
#endif /* not lint */
#include <stdio.h>
@@ -112,12 +112,12 @@ pw_update(struct passwd * pwd, char const * user, int mode)
/*
* First, let's check the see if the database is alright
- * Note: -c is only available in FreeBSD 2.2 and above
+ * Note: -C is only available in FreeBSD 2.2 and above
*/
#ifdef HAVE_PWDB_C
- if (pwdb("-c", NULL) == 0) { /* Check only */
+ if (pwdb("-C", NULL) == 0) { /* Check only */
#else
- { /* No -c */
+ { /* No -C */
#endif
char pfx[32];
char pwbuf[PWBUFSZ];