diff options
author | billf <billf@FreeBSD.org> | 1999-06-23 16:54:38 +0000 |
---|---|---|
committer | billf <billf@FreeBSD.org> | 1999-06-23 16:54:38 +0000 |
commit | ce33e41080593127d63d03332b674276a982496f (patch) | |
tree | 11bea20e2016ea0b130474ecc480a520fb446973 /usr.sbin/pkg_install | |
parent | f32906f4850984e002004d359ebc9dbf5d9d68c3 (diff) | |
download | FreeBSD-src-ce33e41080593127d63d03332b674276a982496f.zip FreeBSD-src-ce33e41080593127d63d03332b674276a982496f.tar.gz |
If we are going to have a case for '?' then we should define it in Options.
Submitted by: Ben Olson <bseth@chc-chimes.com>
Diffstat (limited to 'usr.sbin/pkg_install')
-rw-r--r-- | usr.sbin/pkg_install/add/main.c | 4 | ||||
-rw-r--r-- | usr.sbin/pkg_install/create/main.c | 4 | ||||
-rw-r--r-- | usr.sbin/pkg_install/delete/main.c | 4 | ||||
-rw-r--r-- | usr.sbin/pkg_install/info/main.c | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/usr.sbin/pkg_install/add/main.c b/usr.sbin/pkg_install/add/main.c index ee002c4..0aed3a4 100644 --- a/usr.sbin/pkg_install/add/main.c +++ b/usr.sbin/pkg_install/add/main.c @@ -1,6 +1,6 @@ #ifndef lint static const char rcsid[] = - "$Id: main.c,v 1.23 1999/01/28 20:17:32 billf Exp $"; + "$Id: main.c,v 1.24 1999/06/14 21:58:59 obrien Exp $"; #endif /* @@ -31,7 +31,7 @@ static const char rcsid[] = #include "lib.h" #include "add.h" -static char Options[] = "hvIRfnrp:SMt:"; +static char Options[] = "hvIRfnr?p:SMt:"; char *Prefix = NULL; Boolean NoInstall = FALSE; diff --git a/usr.sbin/pkg_install/create/main.c b/usr.sbin/pkg_install/create/main.c index 55810c2..3e04c4b 100644 --- a/usr.sbin/pkg_install/create/main.c +++ b/usr.sbin/pkg_install/create/main.c @@ -1,6 +1,6 @@ #ifndef lint static const char rcsid[] = - "$Id: main.c,v 1.17 1997/10/08 07:46:23 charnier Exp $"; + "$Id: main.c,v 1.18 1998/12/16 13:59:30 jkh Exp $"; #endif /* @@ -18,7 +18,7 @@ static const char rcsid[] = #include "lib.h" #include "create.h" -static char Options[] = "YNOhvf:p:P:c:d:i:I:k:K:r:t:X:D:m:s:"; +static char Options[] = "YNOhv?f:p:P:c:d:i:I:k:K:r:t:X:D:m:s:"; char *Prefix = NULL; char *Comment = NULL; diff --git a/usr.sbin/pkg_install/delete/main.c b/usr.sbin/pkg_install/delete/main.c index 863dc4a..e5d599d 100644 --- a/usr.sbin/pkg_install/delete/main.c +++ b/usr.sbin/pkg_install/delete/main.c @@ -1,6 +1,6 @@ #ifndef lint static const char rcsid[] = - "$Id: main.c,v 1.10 1997/09/18 14:08:40 phk Exp $"; + "$Id: main.c,v 1.11 1997/10/08 07:46:48 charnier Exp $"; #endif /* @@ -28,7 +28,7 @@ static const char rcsid[] = #include "lib.h" #include "delete.h" -static char Options[] = "hvDdnfp:"; +static char Options[] = "hvDdnf?p:"; char *Prefix = NULL; Boolean NoDeInstall = FALSE; diff --git a/usr.sbin/pkg_install/info/main.c b/usr.sbin/pkg_install/info/main.c index cd28bd2..3bda84e 100644 --- a/usr.sbin/pkg_install/info/main.c +++ b/usr.sbin/pkg_install/info/main.c @@ -1,6 +1,6 @@ #ifndef lint static const char rcsid[] = - "$Id: main.c,v 1.15 1997/12/26 05:29:29 hoek Exp $"; + "$Id: main.c,v 1.16 1999/04/27 02:30:27 jkh Exp $"; #endif /* @@ -28,7 +28,7 @@ static const char rcsid[] = #include "lib.h" #include "info.h" -static char Options[] = "acdDe:fikrRpLqImvhl:"; +static char Options[] = "acdDe:fikrRpLqImvh?l:"; int Flags = 0; Boolean AllInstalled = FALSE; |