diff options
author | Erik Andersen <andersen@codepoet.org> | 2000-01-26 20:06:48 +0000 |
---|---|---|
committer | Erik Andersen <andersen@codepoet.org> | 2000-01-26 20:06:48 +0000 |
commit | 5cbdd712f5320ffc109053a94b7cf36c82292cf6 (patch) | |
tree | 77236e83cc0583411a75b752a6152d445eb680e0 /ping.c | |
parent | 3fe39dce5d1a0b0946878c66bbd7f694c5aa38ea (diff) |
mount and umount could leak loop device allocations causing the system to
quickly run out. Also disable init's SIGHUP handler during shutdown.
-Erik
Diffstat (limited to 'ping.c')
-rw-r--r-- | ping.c | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -1,5 +1,5 @@ /* - * $Id: ping.c,v 1.6 1999/12/11 08:41:28 andersen Exp $ + * $Id: ping.c,v 1.7 2000/01/26 20:06:48 erik Exp $ * Mini ping implementation for busybox * * Copyright (C) 1999 by Randolph Chung <tausq@debian.org> @@ -319,10 +319,11 @@ static void ping(char *host) int sockopt; if (!(proto = getprotobyname("icmp"))) { - fprintf(stderr, "ping: unknown protocol icmp\n"); - exit(1); + /* getprotobyname failed, so just silently force + * proto->p_proto to have the correct value for "icmp" */ + proto->p_proto = 1; } - if ((pingsock = socket(AF_INET, SOCK_RAW, proto->p_proto)) < 0) { + if ((pingsock = socket(AF_INET, SOCK_RAW, proto->p_proto)) < 0) { /* 1 == ICMP */ if (errno == EPERM) { fprintf(stderr, "ping: permission denied. (are you root?)\n"); } else { |