aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorRuss Dill <Russ.Dill@asu.edu>2003-12-24 19:31:08 +0000
committerRuss Dill <Russ.Dill@asu.edu>2003-12-24 19:31:08 +0000
commita8992635b117723e65078ada845cc88a9cb77aa3 (patch)
tree34fa06761e0929703d263558803b6072df8c6f93 /networking
parentb90502828cd2178efa049a96f7bbbd9ae6355130 (diff)
downloadbusybox-a8992635b117723e65078ada845cc88a9cb77aa3.tar.gz
move debugging to safe place (before vfork)
Diffstat (limited to 'networking')
-rw-r--r--networking/udhcp/script.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/networking/udhcp/script.c b/networking/udhcp/script.c
index dcd2cad2d..1f74cd742 100644
--- a/networking/udhcp/script.c
+++ b/networking/udhcp/script.c
@@ -208,6 +208,8 @@ void run_script(struct dhcpMessage *packet, const char *name)
if (client_config.script == NULL)
return;
+ DEBUG(LOG_INFO, "vforking and execle'ing %s", client_config.script);
+
/* call script */
pid = vfork();
if (pid) {
@@ -219,9 +221,6 @@ void run_script(struct dhcpMessage *packet, const char *name)
/* close fd's? */
/* exec script */
-#ifndef __uClinux__
- DEBUG(LOG_INFO, "execle'ing %s", client_config.script);
-#endif /* __uClinux__ */
execle(client_config.script, client_config.script,
name, NULL, envp);
LOG(LOG_ERR, "script %s failed: %m", client_config.script);