]> 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 9cb8125580a016d60cedf5430699d36dff861d7f..4d7b72d5f1274171651a205a38d6671f02039a90 100644 (file)
@@ -20,8 +20,6 @@
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
  *  USA
- *
- *  $Id: restart.c 24244 2007-08-22 19:04:55Z androsyn $
  */
 
 #include "stdinc.h"
 #include "ircd_signal.h"
 
 /* external var */
-extern char **myargv;
+extern char * const *myargv;
 
 void
 restart(const char *mesg)
 {
-       static int was_here = NO;       /* redundant due to restarting flag below */
+       static bool was_here = false;   /* redundant due to restarting flag below */
 
        if(was_here)
                abort();
-       was_here = YES;
+       was_here = true;
 
        ilog(L_MAIN, "Restarting Server because: %s", mesg);
 
@@ -56,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...");
 
@@ -74,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);