Source-Changes-HG archive

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

[src/netbsd-1-6]: src/usr.sbin/pkg_install/lib Pull up revision 1.41 (request...



details:   https://anonhg.NetBSD.org/src/rev/a5bfb293a58d
branches:  netbsd-1-6
changeset: 528587:a5bfb293a58d
user:      lukem <lukem%NetBSD.org@localhost>
date:      Tue Jul 23 11:06:20 2002 +0000

description:
Pull up revision 1.41 (requested by lukem):
sweep of errx/warnx, remove unnecessary trailing \n

diffstat:

 usr.sbin/pkg_install/lib/ftpio.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (32 lines):

diff -r 35ff8210b4f6 -r a5bfb293a58d usr.sbin/pkg_install/lib/ftpio.c
--- a/usr.sbin/pkg_install/lib/ftpio.c  Tue Jul 23 11:06:10 2002 +0000
+++ b/usr.sbin/pkg_install/lib/ftpio.c  Tue Jul 23 11:06:20 2002 +0000
@@ -1,8 +1,8 @@
-/*     $NetBSD: ftpio.c,v 1.35.2.3 2002/07/21 04:42:30 lukem Exp $     */
+/*     $NetBSD: ftpio.c,v 1.35.2.4 2002/07/23 11:06:20 lukem Exp $     */
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: ftpio.c,v 1.35.2.3 2002/07/21 04:42:30 lukem Exp $");
+__RCSID("$NetBSD: ftpio.c,v 1.35.2.4 2002/07/23 11:06:20 lukem Exp $");
 #endif
 
 /*
@@ -607,7 +607,7 @@
                (void) fclose(f);
                
                if (matches == 0 && Verbose)
-                       warnx("nothing appropriate found\n");
+                       warnx("nothing appropriate found");
        }
 
        unlink(tmpname);
@@ -822,7 +822,7 @@
 static void
 usage(void)
 {
-  errx(1, "Usage: foo [-v] ftp://-pattern\n";);
+  errx(1, "Usage: foo [-v] ftp://-pattern";);
 }
 
 



Home | Main Index | Thread Index | Old Index