diff options
author | Christopher Faylor <me@cgf.cx> | 2001-12-14 17:15:37 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2001-12-14 17:15:37 +0000 |
commit | bdc7392ce30a5b90ecf05b73c04cc34496482f8e (patch) | |
tree | 792213cf8706f3de10fb06e36ed54220d3abaf39 | |
parent | d315f8fc0bf57b41c2a99e3657581eb96bf9cb4e (diff) | |
download | cygnal-bdc7392ce30a5b90ecf05b73c04cc34496482f8e.tar.gz cygnal-bdc7392ce30a5b90ecf05b73c04cc34496482f8e.tar.bz2 cygnal-bdc7392ce30a5b90ecf05b73c04cc34496482f8e.zip |
* mkpasswd.c (opts): Add indication that '-p' option requires an argument.
-rw-r--r-- | winsup/utils/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/utils/mkpasswd.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/winsup/utils/ChangeLog b/winsup/utils/ChangeLog index 63d77c3a4..3cb8a3627 100644 --- a/winsup/utils/ChangeLog +++ b/winsup/utils/ChangeLog @@ -1,3 +1,8 @@ +Fri Dec 14 12:10:39 2001 Jason Tishler <jason@tishler.net> + + * mkpasswd.c (opts): Add indication that '-p' option requires an + argument. + 2001-12-11 Christopher Faylor <cgf@redhat.com> * Makefile.in: Add define to CXXFLAGS. diff --git a/winsup/utils/mkpasswd.c b/winsup/utils/mkpasswd.c index 0f0b2cdb9..413739e4a 100644 --- a/winsup/utils/mkpasswd.c +++ b/winsup/utils/mkpasswd.c @@ -415,7 +415,7 @@ struct option longopts[] = { {0, no_argument, NULL, 0} }; -char opts[] = "ldo:gsmhpu:"; +char opts[] = "ldo:gsmhp:u:"; int main (int argc, char **argv) |