aboutsummaryrefslogtreecommitdiff
path: root/networking/dnsd.c
diff options
context:
space:
mode:
Diffstat (limited to 'networking/dnsd.c')
-rw-r--r--networking/dnsd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/networking/dnsd.c b/networking/dnsd.c
index 58a8fc1d2..f8bd07e10 100644
--- a/networking/dnsd.c
+++ b/networking/dnsd.c
@@ -92,7 +92,7 @@ static void convname(char *a, uint8_t *q)
92} 92}
93 93
94/* 94/*
95 * Insert length of substrings insetad of dots 95 * Insert length of substrings instead of dots
96 */ 96 */
97static void undot(uint8_t * rip) 97static void undot(uint8_t * rip)
98{ 98{
@@ -393,12 +393,12 @@ int dnsd_main(int argc, char **argv)
393 } 393 }
394 394
395 if(is_daemon()) 395 if(is_daemon())
396#if defined(__uClinux__) 396#ifdef BB_NOMMU
397 /* reexec for vfork() do continue parent */ 397 /* reexec for vfork() do continue parent */
398 vfork_daemon_rexec(1, 0, argc, argv, "-d"); 398 vfork_daemon_rexec(1, 0, argc, argv, "-d");
399#else /* uClinux */ 399#else
400 bb_xdaemon(1, 0); 400 bb_xdaemon(1, 0);
401#endif /* uClinuvx */ 401#endif
402 402
403 dnsentryinit(is_verbose()); 403 dnsentryinit(is_verbose());
404 404