X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fprocess.c;h=d81fdd693608d9f11b5b9fe465ada80a7c55fef4;hp=5566510d4e7dec693cdebbfb1b8c86c4b7aa3eb6;hb=96f5d98fc299a53fcdad304a56eb3a77a2c229e7;hpb=691907caaeb348dee3dbe8a85f3590241f2cc992 diff --git a/src/process.c b/src/process.c index 5566510d..d81fdd69 100644 --- a/src/process.c +++ b/src/process.c @@ -17,7 +17,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id: process.c,v 1.1.2.66 2003/08/08 17:17:13 guus Exp $ + $Id: process.c,v 1.1.2.68 2003/08/08 19:56:11 guus Exp $ */ #include "system.h" @@ -99,11 +99,14 @@ bool install_service(void) { strncat(command, program_name, sizeof(command)); for(argp = g_argv + 1; *argp; argp++) { - space = strchr(*argp, " "); + space = strchr(*argp, ' '); strncat(command, " ", sizeof(command)); + if(space) strncat(command, "\"", sizeof(command)); + strncat(command, *argp, sizeof(command)); + if(space) strncat(command, "\"", sizeof(command)); } @@ -363,19 +366,23 @@ bool execute_script(const char *name, char **envp) cp(); - asprintf(&scriptname, "%s/%s", confbase, name); + asprintf(&scriptname, "\"%s/%s\"", confbase, name); +#ifndef HAVE_MINGW /* First check if there is a script */ if(stat(scriptname, &s)) return true; + ifdebug(STATUS) logger(LOG_INFO, _("Executing script %s"), name); +#endif + +#ifdef HAVE_PUTENV /* Set environment */ while(*envp) putenv(*envp++); - - ifdebug(STATUS) logger(LOG_INFO, _("Executing script %s"), name); +#endif status = system(scriptname); @@ -383,6 +390,7 @@ bool execute_script(const char *name, char **envp) /* Unset environment? */ +#ifdef WEXITSTATUS if(status != -1) { if(WIFEXITED(status)) { /* Child exited by itself */ if(WEXITSTATUS(status)) { @@ -404,6 +412,7 @@ bool execute_script(const char *name, char **envp) strerror(errno)); return false; } +#endif #endif return true; }