pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/pkgtools/pkg_install/files Fix format string in pkg_ad...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/223fd249eee8
branches:  trunk
changeset: 651651:223fd249eee8
user:      agc <agc%pkgsrc.org@localhost>
date:      Fri May 08 16:29:37 2015 +0000

description:
Fix format string in pkg_add's help message - from J. Lewis Muir

Bump version number for pkg_install to 20150508

diffstat:

 pkgtools/pkg_install/files/add/main.c    |  8 ++++----
 pkgtools/pkg_install/files/lib/version.h |  4 ++--
 2 files changed, 6 insertions(+), 6 deletions(-)

diffs (47 lines):

diff -r d734710fb79d -r 223fd249eee8 pkgtools/pkg_install/files/add/main.c
--- a/pkgtools/pkg_install/files/add/main.c     Fri May 08 15:09:42 2015 +0000
+++ b/pkgtools/pkg_install/files/add/main.c     Fri May 08 16:29:37 2015 +0000
@@ -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 @@
 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 -r d734710fb79d -r 223fd249eee8 pkgtools/pkg_install/files/lib/version.h
--- a/pkgtools/pkg_install/files/lib/version.h  Fri May 08 15:09:42 2015 +0000
+++ b/pkgtools/pkg_install/files/lib/version.h  Fri May 08 16:29:37 2015 +0000
@@ -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_ */



Home | Main Index | Thread Index | Old Index