]> jfr.im git - solanum.git/blobdiff - bandb/bandb.c
refuse opers setting an invalidly long k-line reason
[solanum.git] / bandb / bandb.c
index 769f6fe437b6b6430dbf20f20830368f537b128f..85487447ab562c9f15977bf7458daa2775718a28 100644 (file)
@@ -247,18 +247,15 @@ error_cb(rb_helper *helper)
        exit(1);
 }
 
-#ifndef WINDOWS
 static void
 dummy_handler(int sig)
 {
        return;
 }
-#endif
 
 static void
 setup_signals(void)
 {
-#ifndef _WIN32
        struct sigaction act;
 
        act.sa_flags = 0;
@@ -281,7 +278,6 @@ setup_signals(void)
 
        act.sa_handler = dummy_handler;
        sigaction(SIGALRM, &act, 0);
-#endif
 }
 
 
@@ -306,9 +302,9 @@ main(int argc, char *argv[])
        if(bandb_helper == NULL)
        {
                fprintf(stderr,
-                       "This is the charybdis bandb for internal ircd use.\n");
+                       "This is the solanum bandb for internal ircd use.\n");
                fprintf(stderr,
-                       "You aren't supposed to run me directly (did you want bantool?). Exiting.\n");
+                       "You aren't supposed to run me directly (did you want solanum-bantool?). Exiting.\n");
                exit(1);
        }
        rsdb_init(db_error_cb);