]> jfr.im git - solanum.git/blobdiff - ircd/restart.c
Support more human friendly k/d/x-line duration format
[solanum.git] / ircd / restart.c
index 1a63b57262c7fbdef3273beb5e3427d2b3a0041f..4d7b72d5f1274171651a205a38d6671f02039a90 100644 (file)
@@ -32,7 +32,7 @@
 #include "ircd_signal.h"
 
 /* external var */
-extern char **myargv;
+extern char * const *myargv;
 
 void
 restart(const char *mesg)
@@ -54,7 +54,7 @@ server_reboot(void)
        int i;
        char path[PATH_MAX+1];
 
-       sendto_realops_snomask(SNO_GENERAL, L_ALL, "Restarting server...");
+       sendto_realops_snomask(SNO_GENERAL, L_NETWIDE, "Restarting server...");
 
        ilog(L_MAIN, "Restarting server...");
 
@@ -72,7 +72,7 @@ server_reboot(void)
                close(i);
 
        unlink(pidFileName);
-       execv(SPATH, (void *)myargv);
+       execv(ircd_paths[IRCD_PATH_IRCD_EXEC], (void *)myargv);
 
        /* use this if execv of SPATH fails */
        snprintf(path, sizeof(path), "%s/bin/ircd", ConfigFileEntry.dpath);