diff options
| author | Wolfram Schneider <wosch@FreeBSD.org> | 1998-02-11 23:31:24 +0000 |
|---|---|---|
| committer | Wolfram Schneider <wosch@FreeBSD.org> | 1998-02-11 23:31:24 +0000 |
| commit | 27f8f85b7efbfb3847e39dd95ab0866cea85d974 (patch) | |
| tree | a3c6052ae3567a716a526fb9c654f4459b716729 | |
| parent | bd45deefaa9b92ae1c8d09ecb4b3cabd991247bc (diff) | |
Notes
| -rw-r--r-- | usr.sbin/pw/pwupd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/pw/pwupd.c b/usr.sbin/pw/pwupd.c index 0b68266e8298..c42b1fb9ddcc 100644 --- a/usr.sbin/pw/pwupd.c +++ b/usr.sbin/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]; |
