summaryrefslogtreecommitdiffstats
path: root/usr.sbin/mtrace/mtrace.c
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2001-03-09 03:19:51 +0000
committerderaadt <deraadt@openbsd.org>2001-03-09 03:19:51 +0000
commit43ae5fd5fd7f771760b0e2b045f4a087f9b119eb (patch)
treea530145e7e9f03850c39a5d58045900363f7c46b /usr.sbin/mtrace/mtrace.c
parentcreate *.pub files with umask 0644, so that you can mv them to authorized_keys (diff)
downloadwireguard-openbsd-43ae5fd5fd7f771760b0e2b045f4a087f9b119eb.tar.xz
wireguard-openbsd-43ae5fd5fd7f771760b0e2b045f4a087f9b119eb.zip
exit(-#) is wrong
Diffstat (limited to 'usr.sbin/mtrace/mtrace.c')
-rw-r--r--usr.sbin/mtrace/mtrace.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.sbin/mtrace/mtrace.c b/usr.sbin/mtrace/mtrace.c
index 0bf2126d04c..c7ef9dd5e20 100644
--- a/usr.sbin/mtrace/mtrace.c
+++ b/usr.sbin/mtrace/mtrace.c
@@ -52,7 +52,7 @@
#ifndef lint
static char rcsid[] =
- "@(#) $Id: mtrace.c,v 1.4 2000/12/21 00:33:38 deraadt Exp $";
+ "@(#) $Id: mtrace.c,v 1.5 2001/03/09 03:24:07 deraadt Exp $";
#endif
#include <netdb.h>
@@ -1328,7 +1328,7 @@ Usage: mtrace [-Mlnps] [-w wait] [-m max_hops] [-q nqueries] [-g gateway]\n\
(connect(udp, (struct sockaddr *) &addr, sizeof(addr)) < 0) ||
getsockname(udp, (struct sockaddr *) &addr, &addrlen) < 0) {
perror("Determining local address");
- exit(-1);
+ exit(1);
}
#ifdef SUNOS5
@@ -1347,14 +1347,14 @@ Usage: mtrace [-Mlnps] [-w wait] [-m max_hops] [-q nqueries] [-g gateway]\n\
error = sysinfo(SI_HOSTNAME, myhostname, sizeof(myhostname));
if (error == -1) {
perror("Getting my hostname");
- exit(-1);
+ exit(1);
}
hp = gethostbyname(myhostname);
if (hp == NULL || hp->h_addrtype != AF_INET ||
hp->h_length != sizeof(addr.sin_addr)) {
perror("Finding IP address for my hostname");
- exit(-1);
+ exit(1);
}
memcpy((char *)&addr.sin_addr.s_addr, hp->h_addr, hp->h_length);
@@ -1715,7 +1715,7 @@ log(severity, syserr, format, va_alist)
else
fprintf(stderr, ": errno %d\n", syserr);
}
- if (severity <= LOG_ERR) exit(-1);
+ if (severity <= LOG_ERR) exit(1);
}
/* dummies */