diff options
author | Rob Landley <rob@landley.net> | 2006-08-15 21:37:55 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-08-15 21:37:55 +0000 |
commit | 4640b05afd2220ccf7f385a9e8dcc18362196957 (patch) | |
tree | 81981591b155931bdb92c4b599ae19970600d202 /networking | |
parent | a299efb7b0baea494bf1cb4f050879c29240e5c4 (diff) | |
download | busybox-w32-4640b05afd2220ccf7f385a9e8dcc18362196957.tar.gz busybox-w32-4640b05afd2220ccf7f385a9e8dcc18362196957.tar.bz2 busybox-w32-4640b05afd2220ccf7f385a9e8dcc18362196957.zip |
Bernhard Fischer pointed out some leftover debris needing cleanup.
Diffstat (limited to 'networking')
-rw-r--r-- | networking/dnsd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/dnsd.c b/networking/dnsd.c index ec604e0e0..b0e74d770 100644 --- a/networking/dnsd.c +++ b/networking/dnsd.c | |||
@@ -203,7 +203,7 @@ static int listen_socket(char *iface_addr, int listen_port) | |||
203 | if (!inet_aton(iface_addr, &a.sin_addr)) | 203 | if (!inet_aton(iface_addr, &a.sin_addr)) |
204 | bb_perror_msg_and_die("bad iface address"); | 204 | bb_perror_msg_and_die("bad iface address"); |
205 | xbind(s, (struct sockaddr *)&a, sizeof(a)); | 205 | xbind(s, (struct sockaddr *)&a, sizeof(a)); |
206 | xlisten(s, 50); /* xlisten? */ | 206 | xlisten(s, 50); |
207 | sprintf(msg, "accepting UDP packets on addr:port %s:%d\n", | 207 | sprintf(msg, "accepting UDP packets on addr:port %s:%d\n", |
208 | iface_addr, (int)listen_port); | 208 | iface_addr, (int)listen_port); |
209 | log_message(LOG_FILE, msg); | 209 | log_message(LOG_FILE, msg); |