From: Russ Dill Date: Wed, 24 Dec 2003 19:31:08 +0000 (-0000) Subject: move debugging to safe place (before vfork) X-Git-Tag: 1_00_pre6~82 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a8992635b117723e65078ada845cc88a9cb77aa3;p=oweals%2Fbusybox.git move debugging to safe place (before vfork) --- 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);