From: Denis Vlasenko Date: Sat, 24 Mar 2007 13:09:07 +0000 (-0000) Subject: dnsd: last commit had a typo :( X-Git-Tag: 1_6_0~326 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=b5b45a91f0f2d3f57864b49eb3126c9eb6a2b1eb;p=oweals%2Fbusybox.git dnsd: last commit had a typo :( --- diff --git a/networking/dnsd.c b/networking/dnsd.c index fd2f421d7..2cecf6491 100644 --- a/networking/dnsd.c +++ b/networking/dnsd.c @@ -238,12 +238,12 @@ static int process_packet(uint8_t * buf) head = (struct dns_head *)buf; if (head->nquer == 0) { bb_error_msg("no queries"); - retunr -1; + return -1; } if (head->flags & 0x8000) { bb_error_msg("ignoring response packet"); - retunr -1; + return -1; } from = (void *)&head[1]; // start of query string @@ -401,4 +401,5 @@ int dnsd_main(int argc, char **argv) continue; sendto(udps, buf, r, 0, &lsa->sa, fromlen); } + return 0; }