diff options
author | khorben <khorben> | 2015-07-20 13:59:44 +0000 |
---|---|---|
committer | khorben <khorben> | 2015-07-20 13:59:44 +0000 |
commit | f5ac8657670f107b17edb45a7817bca28cbba649 (patch) | |
tree | 0370b131798fc8b3340748971d8701401a52458a /pkgtools | |
parent | 7712fe171c8ba046dca41cc7f5f5a691352773a0 (diff) | |
download | pkgsrc-f5ac8657670f107b17edb45a7817bca28cbba649.tar.gz |
Remove the "-s" option from the usage screen of pkg_add(1)
It is not available anymore (since 1.17).
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/pkg_install/files/add/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgtools/pkg_install/files/add/main.c b/pkgtools/pkg_install/files/add/main.c index 42a1abba380..de7f2dc5b93 100644 --- a/pkgtools/pkg_install/files/add/main.c +++ b/pkgtools/pkg_install/files/add/main.c @@ -1,4 +1,4 @@ -/* $NetBSD: main.c,v 1.29 2015/05/08 16:29:37 agc Exp $ */ +/* $NetBSD: main.c,v 1.30 2015/07/20 13:59:44 khorben Exp $ */ #if HAVE_CONFIG_H #include "config.h" @@ -7,7 +7,7 @@ #if HAVE_SYS_CDEFS_H #include <sys/cdefs.h> #endif -__RCSID("$NetBSD: main.c,v 1.29 2015/05/08 16:29:37 agc Exp $"); +__RCSID("$NetBSD: main.c,v 1.30 2015/07/20 13:59:44 khorben Exp $"); /* * @@ -64,7 +64,7 @@ usage(void) { (void) fprintf(stderr, "%s\n%s\n%s\n", "usage: pkg_add [-AfhInRuVv] [-C config] [-P destdir] [-K pkg_dbdir]", - " [-m machine] [-p prefix] [-s verification-type]", + " [-m machine] [-p prefix]", " [[ftp|http]://[user[:password]@]host[:port]][/path/]pkg-name ..."); exit(1); } |