Source-Changes-HG archive

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

[src/netbsd-1-5]: src/usr.sbin/pkg_install/lib Pull up rev. 1.40 to netbsd-1-...



details:   https://anonhg.NetBSD.org/src/rev/420b10b17719
branches:  netbsd-1-5
changeset: 489670:420b10b17719
user:      hubertf <hubertf%NetBSD.org@localhost>
date:      Wed Oct 04 16:44:05 2000 +0000

description:
Pull up rev. 1.40 to netbsd-1-5 branch, OK'd by thorpej:

 > Make even more silent, only spit out stuff if -v is given.

diffstat:

 usr.sbin/pkg_install/lib/file.c |  7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 5a51a1982869 -r 420b10b17719 usr.sbin/pkg_install/lib/file.c
--- a/usr.sbin/pkg_install/lib/file.c   Wed Oct 04 08:24:25 2000 +0000
+++ b/usr.sbin/pkg_install/lib/file.c   Wed Oct 04 16:44:05 2000 +0000
@@ -1,11 +1,11 @@
-/*     $NetBSD: file.c,v 1.37.4.2 2000/08/29 01:28:19 hubertf Exp $    */
+/*     $NetBSD: file.c,v 1.37.4.3 2000/10/04 16:44:05 hubertf Exp $    */
 
 #include <sys/cdefs.h>
 #ifndef lint
 #if 0
 static const char *rcsid = "from FreeBSD Id: file.c,v 1.29 1997/10/08 07:47:54 charnier Exp";
 #else
-__RCSID("$NetBSD: file.c,v 1.37.4.2 2000/08/29 01:28:19 hubertf Exp $");
+__RCSID("$NetBSD: file.c,v 1.37.4.3 2000/10/04 16:44:05 hubertf Exp $");
 #endif
 #endif
 
@@ -430,7 +430,8 @@
 /*                     printf("HF: expandURL('%s')'ing #3\n", url);*//*HF*/
                        rc = expandURL(tmp, url);
                        if (rc >= 0) {
-                               printf("fileFindByPath: success, expandURL('%s') returns '%s'\n", url, tmp);
+                               if (Verbose)
+                                       printf("fileFindByPath: success, expandURL('%s') returns '%s'\n", url, tmp);
                                return tmp;
                        }
 



Home | Main Index | Thread Index | Old Index