diff options
author | agc <agc@pkgsrc.org> | 2015-05-08 16:29:37 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2015-05-08 16:29:37 +0000 |
commit | afd5069c8df7d5860bf9c5aac8059c24446ed7bc (patch) | |
tree | 9960380d71ea8409266c33075222edda46ae57c4 /pkgtools/pkg_install/files | |
parent | ed7a3f19c71eb9eaafe361c7e1cf19158f425445 (diff) | |
download | pkgsrc-afd5069c8df7d5860bf9c5aac8059c24446ed7bc.tar.gz |
Fix format string in pkg_add's help message - from J. Lewis Muir
Bump version number for pkg_install to 20150508
Diffstat (limited to 'pkgtools/pkg_install/files')
-rw-r--r-- | pkgtools/pkg_install/files/add/main.c | 8 | ||||
-rw-r--r-- | pkgtools/pkg_install/files/lib/version.h | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/pkgtools/pkg_install/files/add/main.c b/pkgtools/pkg_install/files/add/main.c index fd003382366..42a1abba380 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.28 2014/12/30 15:13:20 wiz Exp $ */ +/* $NetBSD: main.c,v 1.29 2015/05/08 16:29:37 agc 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.28 2014/12/30 15:13:20 wiz Exp $"); +__RCSID("$NetBSD: main.c,v 1.29 2015/05/08 16:29:37 agc Exp $"); /* * @@ -62,9 +62,9 @@ int ReplaceSame = 0; static void usage(void) { - (void) fprintf(stderr, "%s\n%s\n%s\n%s\n", + (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]\n", + " [-m machine] [-p prefix] [-s verification-type]", " [[ftp|http]://[user[:password]@]host[:port]][/path/]pkg-name ..."); exit(1); } diff --git a/pkgtools/pkg_install/files/lib/version.h b/pkgtools/pkg_install/files/lib/version.h index 15d2d4df3ac..fd401a0890e 100644 --- a/pkgtools/pkg_install/files/lib/version.h +++ b/pkgtools/pkg_install/files/lib/version.h @@ -1,4 +1,4 @@ -/* $NetBSD: version.h,v 1.167 2014/12/30 15:13:21 wiz Exp $ */ +/* $NetBSD: version.h,v 1.168 2015/05/08 16:29:37 agc Exp $ */ /* * Copyright (c) 2001 Thomas Klausner. All rights reserved. @@ -27,6 +27,6 @@ #ifndef _INST_LIB_VERSION_H_ #define _INST_LIB_VERSION_H_ -#define PKGTOOLS_VERSION 20141227 +#define PKGTOOLS_VERSION 20150508 #endif /* _INST_LIB_VERSION_H_ */ |