]> jfr.im git - solanum.git/blobdiff - extensions/sno_farconnect.c
callerid: actually the guard should be for source_p
[solanum.git] / extensions / sno_farconnect.c
index 36e2dbaea715b4f59d6dcb541b1bf9a9868af20a..7878065882c5f6ddd796733bc7bcd09fd5a7057a 100644 (file)
@@ -15,6 +15,9 @@
 #include "s_conf.h"
 #include "snomask.h"
 
+static const char sno_desc[] =
+       "Adds server notice mask +F that allows operators to receive notices for connections on other servers";
+
 static int _modinit(void);
 static void _moddeinit(void);
 static void h_gcn_new_remote_user(struct Client *);
@@ -26,9 +29,6 @@ mapi_hfn_list_av1 gcn_hfnlist[] = {
        { NULL, NULL }
 };
 
-static const char sno_desc[] =
-       "Adds server notice mask +F that allows operators to receive notices for connections on other servers";
-
 DECLARE_MODULE_AV2(globalconnexit, _modinit, _moddeinit, NULL, NULL, gcn_hfnlist, NULL, NULL, sno_desc);
 
 static int
@@ -38,7 +38,7 @@ _modinit(void)
        snomask_modes['F'] = find_snomask_slot();
 
        /* show the fact that we are showing user information in /version */
-       opers_see_all_users = 1;
+       opers_see_all_users = true;
 
        return 0;
 }