]> jfr.im git - solanum.git/commitdiff
More bool conversions
authorElizabeth Myers <redacted>
Wed, 9 Mar 2016 08:00:40 +0000 (02:00 -0600)
committerElizabeth Myers <redacted>
Wed, 9 Mar 2016 08:00:40 +0000 (02:00 -0600)
include/ircd.h
ircd/client.c
ircd/ircd.c
ircd/newconf.c
modules/m_kline.c
modules/m_names.c
modules/m_xline.c

index a53b10f746d9b87567621bd4a67fcb4b047945e9..b5d8a48d3be3e69f063f758c46eb648ae1309341 100644 (file)
@@ -69,7 +69,7 @@ extern int cold_start;
 extern int dorehash;
 extern int dorehashbans;
 extern int doremotd;
-extern int kline_queued;
+extern bool kline_queued;
 extern int server_state_foreground;
 extern int opers_see_all_users; /* sno_farconnect.so loaded, operspy without
                                   accountability, etc */
index 0902af26ca68fa87a302b9f1fa291121444cb62d..bd6982d0786995ea12e8f80691eafbcad1ccc933 100644 (file)
@@ -475,7 +475,7 @@ check_banned_lines(void)
 void
 check_klines_event(void *unused)
 {
-       kline_queued = 0;
+       kline_queued = false;
        check_klines();
 }
 
index e6ff1d2cafbeeb82676606e6ac561639dda6a892..e87689e80873cbe53adb333fb8da6f4c088e3579 100644 (file)
@@ -102,7 +102,7 @@ char **myargv;
 int dorehash = 0;
 int dorehashbans = 0;
 int doremotd = 0;
-int kline_queued = 0;
+bool kline_queued = false;
 int server_state_foreground = 0;
 int opers_see_all_users = 0;
 int ssl_ok = 0;
index 7d6bab44060922f591aff48d640c7d01107333ea..ccc7afc0a6d7f1986969e34bee94411a96fc4ff2 100644 (file)
@@ -1553,7 +1553,7 @@ conf_set_general_kline_delay(void *data)
        ConfigFileEntry.kline_delay = *(unsigned int *) data;
 
        /* THIS MUST BE HERE to stop us being unable to check klines */
-       kline_queued = 0;
+       kline_queued = false;
 }
 
 static void
index 4456d1afb5915904f220e694205529468c021f81..c1861ec3ae885c564f855e5fd472661e80161d46 100644 (file)
@@ -106,7 +106,7 @@ mo_kline(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source
        struct ConfItem *aconf;
        int tkline_time = 0;
        int loc = 1;
-       int propagated = ConfigFileEntry.use_propagated_bans;
+       bool propagated = ConfigFileEntry.use_propagated_bans;
 
        if(!IsOperK(source_p))
        {
@@ -157,7 +157,7 @@ mo_kline(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source
                        return;
 
                /* Set as local-only. */
-               propagated = 0;
+               propagated = false;
        }
        /* if we have cluster servers, send it to them.. */
        else if(!propagated && rb_dlink_list_length(&cluster_conf_list) > 0)
@@ -218,11 +218,11 @@ mo_kline(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source
 
        if(ConfigFileEntry.kline_delay)
        {
-               if(kline_queued == 0)
+               if(!kline_queued)
                {
                        rb_event_addonce("check_klines", check_klines_event, NULL,
                                         ConfigFileEntry.kline_delay);
-                       kline_queued = 1;
+                       kline_queued = true;
                }
        }
        else
@@ -328,11 +328,11 @@ handle_remote_kline(struct Client *source_p, int tkline_time,
 
        if(ConfigFileEntry.kline_delay)
        {
-               if(kline_queued == 0)
+               if(!kline_queued)
                {
                        rb_event_addonce("check_klines", check_klines_event, NULL,
                                         ConfigFileEntry.kline_delay);
-                       kline_queued = 1;
+                       kline_queued = true;
                }
        }
        else
@@ -353,7 +353,7 @@ mo_unkline(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *sour
        char splat[] = "*";
        char *h = LOCAL_COPY(parv[1]);
        struct ConfItem *aconf;
-       int propagated = 1;
+       bool propagated = true;
 
        if(!IsOperUnkline(source_p))
        {
@@ -406,7 +406,7 @@ mo_unkline(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *sour
                if(match(parv[3], me.name) == 0)
                        return;
 
-               propagated = 0;
+               propagated = false;
        }
 
        aconf = find_exact_conf_by_address(host, CONF_KILL, user);
index 1bb8a556c7465d852e5ce57d5f520fae43e88e5d..c7e142eb90827b7c0162dfaa51406bf982a2e440 100644 (file)
@@ -107,8 +107,6 @@ m_names(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_
                sendto_one(source_p, form_str(RPL_ENDOFNAMES),
                           me.name, source_p->name, "*");
        }
-
-       return;
 }
 
 /*
index 8f8861e1c99636f9aca8205238662c23507536da..04e02617ba167fdbbfddd4098468bb5297349ed0 100644 (file)
@@ -66,7 +66,7 @@ static void me_unxline(struct MsgBuf *msgbuf_p, struct Client *client_p, struct
 
 static bool valid_xline(struct Client *, const char *, const char *);
 static void apply_xline(struct Client *client_p, const char *name,
-                       const char *reason, int temp_time, int propagated);
+                       const char *reason, int temp_time, bool propagated);
 static void propagate_xline(struct Client *source_p, const char *target,
                            int temp_time, const char *name, const char *type, const char *reason);
 static void cluster_xline(struct Client *source_p, int temp_time,
@@ -76,7 +76,7 @@ static void handle_remote_xline(struct Client *source_p, int temp_time,
                                const char *name, const char *reason);
 static void handle_remote_unxline(struct Client *source_p, const char *name);
 static void remove_xline(struct Client *source_p, const char *name,
-                        int propagated);
+                        bool propagated);
 
 struct Message xline_msgtab = {
        "XLINE", 0, 0, 0, 0,
@@ -107,7 +107,7 @@ mo_xline(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source
        const char *target_server = NULL;
        int temp_time;
        int loc = 1;
-       int propagated = ConfigFileEntry.use_propagated_bans;
+       bool propagated = ConfigFileEntry.use_propagated_bans;
 
        if(!IsOperXline(source_p))
        {
@@ -155,7 +155,7 @@ mo_xline(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source
                        return;
 
                /* Set as local-only. */
-               propagated = 0;
+               propagated = false;
        }
        else if(!propagated && rb_dlink_list_length(&cluster_conf_list) > 0)
                cluster_xline(source_p, temp_time, name, reason);
@@ -232,7 +232,7 @@ handle_remote_xline(struct Client *source_p, int temp_time, const char *name, co
                return;
        }
 
-       apply_xline(source_p, name, reason, temp_time, 0);
+       apply_xline(source_p, name, reason, temp_time, false);
 }
 
 /* valid_xline()
@@ -264,7 +264,7 @@ valid_xline(struct Client *source_p, const char *gecos, const char *reason)
 }
 
 void
-apply_xline(struct Client *source_p, const char *name, const char *reason, int temp_time, int propagated)
+apply_xline(struct Client *source_p, const char *name, const char *reason, int temp_time, bool propagated)
 {
        struct ConfItem *aconf;
 
@@ -385,7 +385,7 @@ cluster_xline(struct Client *source_p, int temp_time, const char *name, const ch
 static void
 mo_unxline(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
 {
-       int propagated = 1;
+       bool propagated = true;
 
        if(!IsOperXline(source_p))
        {
@@ -407,7 +407,7 @@ mo_unxline(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *sour
                if(match(parv[3], me.name) == 0)
                        return;
 
-               propagated = 0;
+               propagated = false;
        }
        /* cluster{} moved to remove_xline */
 
@@ -452,7 +452,7 @@ handle_remote_unxline(struct Client *source_p, const char *name)
                             source_p->servptr->name, SHARED_UNXLINE))
                return;
 
-       remove_xline(source_p, name, 0);
+       remove_xline(source_p, name, false);
 }
 
 static void