aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
author"Vladimir N. Oleynik" <dzo@simtreas.ru>2005-10-12 15:34:25 +0000
committer"Vladimir N. Oleynik" <dzo@simtreas.ru>2005-10-12 15:34:25 +0000
commit6c35c7c97628cb81eb26c2a059b0dde2879d91aa (patch)
tree0da08a6d852fcb5d68bbe3a368460ed815b74923 /networking
parent86a1073e0bfa608defbfaa43d94a537c5e700efe (diff)
downloadbusybox-6c35c7c97628cb81eb26c2a059b0dde2879d91aa.tar.gz
usage bb_dev_null
Diffstat (limited to 'networking')
-rw-r--r--networking/traceroute.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/networking/traceroute.c b/networking/traceroute.c
index 15d55e79b..d716f2f73 100644
--- a/networking/traceroute.c
+++ b/networking/traceroute.c
@@ -321,7 +321,6 @@ static int maxpacket = 32 * 1024; /* max ip packet size */
static int pmtu; /* Path MTU Discovery (RFC1191) */
static char *hostname;
-static const char devnull[] = "/dev/null";
static u_short ident;
static u_short port = 32768 + 666; /* start udp dest port # for probe packets */
@@ -1090,7 +1089,7 @@ traceroute_main(int argc, char *argv[])
bb_perror_msg_and_die("unknown protocol %s", cp);
/* Insure the socket fds won't be 0, 1 or 2 */
- do n = bb_xopen(devnull, O_RDONLY); while (n < 2);
+ do n = bb_xopen(bb_dev_null, O_RDONLY); while (n < 2);
if (n > 2)
close(n);