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 revision 1.29 (request...



details:   https://anonhg.NetBSD.org/src/rev/3a31cd784b52
branches:  netbsd-1-5
changeset: 491490:3a31cd784b52
user:      he <he%NetBSD.org@localhost>
date:      Tue May 01 10:56:33 2001 +0000

description:
Pull up revision 1.29 (requested by hubertf):
  Changes to catch up with recent fixes:
   o Replace ``exit(-x)'' with ``exit(x)''.

diffstat:

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

diffs (23 lines):

diff -r 73f424905bd4 -r 3a31cd784b52 usr.sbin/pkg_install/lib/ftpio.c
--- a/usr.sbin/pkg_install/lib/ftpio.c  Tue May 01 10:55:59 2001 +0000
+++ b/usr.sbin/pkg_install/lib/ftpio.c  Tue May 01 10:56:33 2001 +0000
@@ -1,8 +1,8 @@
-/*     $NetBSD: ftpio.c,v 1.20.2.9 2001/04/22 18:22:44 he Exp $        */
+/*     $NetBSD: ftpio.c,v 1.20.2.10 2001/05/01 10:56:33 he Exp $       */
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: ftpio.c,v 1.20.2.9 2001/04/22 18:22:44 he Exp $");
+__RCSID("$NetBSD: ftpio.c,v 1.20.2.10 2001/05/01 10:56:33 he Exp $");
 #endif
 
 /*
@@ -287,7 +287,7 @@
                    fprintf(stderr, "ftp -detv %s\n", base);
            rc1 = execl("/usr/bin/ftp", "ftp", "-detv", base, NULL);
            warn("setupCoproc: execl() failed");
-           exit(-1);
+           exit(1);
            break;
     default: 
            /* Parent */



Home | Main Index | Thread Index | Old Index