diff options
Diffstat (limited to 'src/protocol')
-rw-r--r-- | src/protocol/bahamut.c | 2 | ||||
-rw-r--r-- | src/protocol/hybrid.c | 4 | ||||
-rw-r--r-- | src/protocol/inspircd.c | 8 | ||||
-rw-r--r-- | src/protocol/plexus.c | 6 | ||||
-rw-r--r-- | src/protocol/ptlink.c | 4 | ||||
-rw-r--r-- | src/protocol/rageircd.c | 4 | ||||
-rw-r--r-- | src/protocol/ratbox.c | 6 | ||||
-rw-r--r-- | src/protocol/shadowircd.c | 8 | ||||
-rw-r--r-- | src/protocol/solidircd.c | 4 | ||||
-rw-r--r-- | src/protocol/ultimate2.c | 14 | ||||
-rw-r--r-- | src/protocol/ultimate3.c | 12 | ||||
-rw-r--r-- | src/protocol/unreal31.c | 12 | ||||
-rw-r--r-- | src/protocol/unreal32.c | 14 | ||||
-rw-r--r-- | src/protocol/viagra.c | 16 |
14 files changed, 57 insertions, 57 deletions
diff --git a/src/protocol/bahamut.c b/src/protocol/bahamut.c index 68a9272ed..942cd88a6 100644 --- a/src/protocol/bahamut.c +++ b/src/protocol/bahamut.c @@ -1393,7 +1393,7 @@ int anope_event_error(char *source, int ac, char **av) { if (ac >= 1) { if (debug) { - alog("ERROR: %s", av[0]); + alog("debug: %s", av[0]); } } return MOD_CONT; diff --git a/src/protocol/hybrid.c b/src/protocol/hybrid.c index 613013ec9..a63f00e26 100644 --- a/src/protocol/hybrid.c +++ b/src/protocol/hybrid.c @@ -545,7 +545,7 @@ int anope_event_topic(char *source, int ac, char **av) if (!c) { if (debug) { - alog("channel: TOPIC %s for nonexistent channel %s", + alog("debug: TOPIC %s for nonexistent channel %s", merge_args(ac - 1, av + 1), av[0]); } return MOD_CONT; @@ -1345,7 +1345,7 @@ int anope_event_error(char *source, int ac, char **av) { if (ac >= 1) { if (debug) { - alog("ERROR: %s", av[0]); + alog("debug: %s", av[0]); } } return MOD_CONT; diff --git a/src/protocol/inspircd.c b/src/protocol/inspircd.c index f5d28a140..7dbd61e0b 100644 --- a/src/protocol/inspircd.c +++ b/src/protocol/inspircd.c @@ -1095,7 +1095,7 @@ int anope_event_setname(char *source, int ac, char **av) u = finduser(av[0]); if (!u) { if (debug) { - alog("user: SETNAME for nonexistent user %s", source); + alog("debug: SETNAME for nonexistent user %s", source); } return MOD_CONT; } @@ -1113,7 +1113,7 @@ int anope_event_chgname(char *source, int ac, char **av) u = finduser(av[0]); if (!u) { if (debug) { - alog("user: CHGNAME for nonexistent user %s", av[0]); + alog("debug: CHGNAME for nonexistent user %s", av[0]); } return MOD_CONT; } @@ -1141,7 +1141,7 @@ int anope_event_sethost(char *source, int ac, char **av) u = finduser(av[0]); if (!u) { if (debug) { - alog("user: SETHOST for nonexistent user %s", source); + alog("debug: SETHOST for nonexistent user %s", source); } return MOD_CONT; } @@ -1192,7 +1192,7 @@ int anope_event_chghost(char *source, int ac, char **av) u = finduser(av[0]); if (!u) { if (debug) { - alog("user: CHGHOST for nonexistent user %s", av[0]); + alog("debug: CHGHOST for nonexistent user %s", av[0]); } return MOD_CONT; } diff --git a/src/protocol/plexus.c b/src/protocol/plexus.c index a6fa39929..afaa7eaa6 100644 --- a/src/protocol/plexus.c +++ b/src/protocol/plexus.c @@ -606,7 +606,7 @@ int anope_event_topic(char *source, int ac, char **av) if (!c) { if (debug) { - alog("channel: TOPIC %s for nonexistent channel %s", + alog("debug: TOPIC %s for nonexistent channel %s", merge_args(ac - 1, av + 1), av[0]); } return MOD_CONT; @@ -911,7 +911,7 @@ int anope_event_sethost(char *source, int ac, char **av) u = finduser(source); if (!u) { if (debug) { - alog("user: SETHOST for nonexistent user %s", source); + alog("debug: SETHOST for nonexistent user %s", source); } return MOD_CONT; } @@ -1443,7 +1443,7 @@ int anope_event_error(char *source, int ac, char **av) { if (ac >= 1) { if (debug) { - alog("ERROR: %s", av[0]); + alog("debug: %s", av[0]); } } return MOD_CONT; diff --git a/src/protocol/ptlink.c b/src/protocol/ptlink.c index d16d37ba9..e5cf97b7b 100644 --- a/src/protocol/ptlink.c +++ b/src/protocol/ptlink.c @@ -425,7 +425,7 @@ int anope_event_newmask(char *source, int ac, char **av) if (!u) { if (debug) { - alog("user: NEWMASK for nonexistent user %s", av[0]); + alog("debug: NEWMASK for nonexistent user %s", av[0]); } return MOD_CONT; } @@ -729,7 +729,7 @@ int anope_event_error(char *source, int ac, char **av) { if (ac >= 1) { if (debug) { - alog("ERROR: %s", av[0]); + alog("debug: %s", av[0]); } } return MOD_CONT; diff --git a/src/protocol/rageircd.c b/src/protocol/rageircd.c index f7ae3c890..c06667ebe 100644 --- a/src/protocol/rageircd.c +++ b/src/protocol/rageircd.c @@ -443,7 +443,7 @@ int anope_event_vhost(char *source, int ac, char **av) u = finduser(av[0]); if (!u) { if (debug) { - alog("user: VHOST for nonexistent user %s", av[0]); + alog("debug: VHOST for nonexistent user %s", av[0]); } return MOD_CONT; } @@ -566,7 +566,7 @@ int anope_event_error(char *source, int ac, char **av) { if (ac >= 1) { if (debug) { - alog("ERROR: %s", av[0]); + alog("debug: %s", av[0]); } } return MOD_CONT; diff --git a/src/protocol/ratbox.c b/src/protocol/ratbox.c index 585d2e014..386633fd0 100644 --- a/src/protocol/ratbox.c +++ b/src/protocol/ratbox.c @@ -614,7 +614,7 @@ int anope_event_topic(char *source, int ac, char **av) if (!c) { if (debug) { - alog("channel: TOPIC %s for nonexistent channel %s", + alog("debug: TOPIC %s for nonexistent channel %s", merge_args(ac - 1, av + 1), av[0]); } return MOD_CONT; @@ -664,7 +664,7 @@ int anope_event_tburst(char *source, int ac, char **av) if (!c) { if (debug) { - alog("channel: TOPIC %s for nonexistent channel %s", + alog("debug: TOPIC %s for nonexistent channel %s", merge_args(ac - 1, av + 1), av[0]); } return MOD_CONT; @@ -1650,7 +1650,7 @@ int anope_event_error(char *source, int ac, char **av) { if (ac >= 1) { if (debug) { - alog("ERROR: %s", av[0]); + alog("debug: %s", av[0]); } } return MOD_CONT; diff --git a/src/protocol/shadowircd.c b/src/protocol/shadowircd.c index e3cf55059..8fdab8db0 100644 --- a/src/protocol/shadowircd.c +++ b/src/protocol/shadowircd.c @@ -636,7 +636,7 @@ int anope_event_chghost(char *source, int ac, char **av) u = find_byuid(av[0]); if (!u) { if (debug) { - alog("user: CHGHOST for nonexistent user %s", av[0]); + alog("debug: CHGHOST for nonexistent user %s", av[0]); } return MOD_CONT; } @@ -657,7 +657,7 @@ int anope_event_topic(char *source, int ac, char **av) if (!c) { if (debug) { - alog("channel: TOPIC %s for nonexistent channel %s", + alog("debug: TOPIC %s for nonexistent channel %s", merge_args(ac - 1, av + 1), av[0]); } return MOD_CONT; @@ -703,7 +703,7 @@ int anope_event_tburst(char *source, int ac, char **av) if (!c) { if (debug) { - alog("channel: TOPIC %s for nonexistent channel %s", + alog("debug: TOPIC %s for nonexistent channel %s", merge_args(ac - 1, av + 1), av[0]); } return MOD_CONT; @@ -1641,7 +1641,7 @@ int anope_event_error(char *source, int ac, char **av) { if (ac >= 1) { if (debug) { - alog("ERROR: %s", av[0]); + alog("debug: %s", av[0]); } } return MOD_CONT; diff --git a/src/protocol/solidircd.c b/src/protocol/solidircd.c index 4cd05427e..8455d1219 100644 --- a/src/protocol/solidircd.c +++ b/src/protocol/solidircd.c @@ -712,7 +712,7 @@ int anope_event_vs(char *source, int ac, char **av) u = finduser(av[0]); if (!u) { if (debug) { - alog("user: SVHOST for nonexistent user %s", av[0]); + alog("debug: SVHOST for nonexistent user %s", av[0]); } return MOD_CONT; } @@ -1429,7 +1429,7 @@ int anope_event_error(char *source, int ac, char **av) { if (ac >= 1) { if (debug) { - alog("ERROR: %s", av[0]); + alog("debug: %s", av[0]); } } return MOD_CONT; diff --git a/src/protocol/ultimate2.c b/src/protocol/ultimate2.c index 70485ca18..3c3927deb 100644 --- a/src/protocol/ultimate2.c +++ b/src/protocol/ultimate2.c @@ -451,7 +451,7 @@ int anope_event_setname(char *source, int ac, char **av) u = finduser(source); if (!u) { if (debug) { - alog("user: SETNAME for nonexistent user %s", source); + alog("debug: SETNAME for nonexistent user %s", source); } return MOD_CONT; } @@ -470,7 +470,7 @@ int anope_event_chgname(char *source, int ac, char **av) u = finduser(av[0]); if (!u) { if (debug) { - alog("user: CHGNAME for nonexistent user %s", av[0]); + alog("debug: CHGNAME for nonexistent user %s", av[0]); } return MOD_CONT; } @@ -489,7 +489,7 @@ int anope_event_setident(char *source, int ac, char **av) u = finduser(source); if (!u) { if (debug) { - alog("user: SETIDENT for nonexistent user %s", source); + alog("debug: SETIDENT for nonexistent user %s", source); } return MOD_CONT; } @@ -508,7 +508,7 @@ int anope_event_chgident(char *source, int ac, char **av) u = finduser(av[0]); if (!u) { if (debug) { - alog("user: CHGIDENT for nonexistent user %s", av[0]); + alog("debug: CHGIDENT for nonexistent user %s", av[0]); } return MOD_CONT; } @@ -527,7 +527,7 @@ int anope_event_sethost(char *source, int ac, char **av) u = finduser(source); if (!u) { if (debug) { - alog("user: SETHOST for nonexistent user %s", source); + alog("debug: SETHOST for nonexistent user %s", source); } return MOD_CONT; } @@ -564,7 +564,7 @@ int anope_event_chghost(char *source, int ac, char **av) u = finduser(av[0]); if (!u) { if (debug) { - alog("user: CHGHOST for nonexistent user %s", av[0]); + alog("debug: CHGHOST for nonexistent user %s", av[0]); } return MOD_CONT; } @@ -1549,7 +1549,7 @@ int anope_event_error(char *source, int ac, char **av) { if (av[0]) { if (debug) { - alog("ERROR: %s", av[0]); + alog("debug: %s", av[0]); } } return MOD_CONT; diff --git a/src/protocol/ultimate3.c b/src/protocol/ultimate3.c index c64500381..7a23faac4 100644 --- a/src/protocol/ultimate3.c +++ b/src/protocol/ultimate3.c @@ -539,7 +539,7 @@ int anope_event_sethost(char *source, int ac, char **av) u = finduser(av[0]); if (!u) { if (debug) { - alog("user: SETHOST for nonexistent user %s", av[0]); + alog("debug: SETHOST for nonexistent user %s", av[0]); } return MOD_CONT; } @@ -920,7 +920,7 @@ int anope_event_setname(char *source, int ac, char **av) u = finduser(source); if (!u) { if (debug) { - alog("user: SETNAME for nonexistent user %s", source); + alog("debug: SETNAME for nonexistent user %s", source); } return MOD_CONT; } @@ -939,7 +939,7 @@ int anope_event_chgname(char *source, int ac, char **av) u = finduser(av[0]); if (!u) { if (debug) { - alog("user: CHGNAME for nonexistent user %s", av[0]); + alog("debug: CHGNAME for nonexistent user %s", av[0]); } return MOD_CONT; } @@ -958,7 +958,7 @@ int anope_event_setident(char *source, int ac, char **av) u = finduser(source); if (!u) { if (debug) { - alog("user: SETIDENT for nonexistent user %s", source); + alog("debug: SETIDENT for nonexistent user %s", source); } return MOD_CONT; } @@ -976,7 +976,7 @@ int anope_event_chgident(char *source, int ac, char **av) u = finduser(av[0]); if (!u) { if (debug) { - alog("user: CHGIDENT for nonexistent user %s", av[0]); + alog("debug: CHGIDENT for nonexistent user %s", av[0]); } return MOD_CONT; } @@ -1564,7 +1564,7 @@ int anope_event_error(char *source, int ac, char **av) { if (ac >= 1) { if (debug) { - alog("ERROR: %s", av[0]); + alog("debug: %s", av[0]); } } return MOD_CONT; diff --git a/src/protocol/unreal31.c b/src/protocol/unreal31.c index a032e4b21..d9d7cf750 100644 --- a/src/protocol/unreal31.c +++ b/src/protocol/unreal31.c @@ -1096,7 +1096,7 @@ int anope_event_setname(char *source, int ac, char **av) u = finduser(source); if (!u) { if (debug) { - alog("user: SETNAME for nonexistent user %s", source); + alog("debug: SETNAME for nonexistent user %s", source); } return MOD_CONT; } @@ -1115,7 +1115,7 @@ int anope_event_chgname(char *source, int ac, char **av) u = finduser(av[0]); if (!u) { if (debug) { - alog("user: CHGNAME for nonexistent user %s", av[0]); + alog("debug: CHGNAME for nonexistent user %s", av[0]); } return MOD_CONT; } @@ -1134,7 +1134,7 @@ int anope_event_setident(char *source, int ac, char **av) u = finduser(source); if (!u) { if (debug) { - alog("user: SETIDENT for nonexistent user %s", source); + alog("debug: SETIDENT for nonexistent user %s", source); } return MOD_CONT; } @@ -1152,7 +1152,7 @@ int anope_event_chgident(char *source, int ac, char **av) u = finduser(av[0]); if (!u) { if (debug) { - alog("user: CHGIDENT for nonexistent user %s", av[0]); + alog("debug: CHGIDENT for nonexistent user %s", av[0]); } return MOD_CONT; } @@ -1171,7 +1171,7 @@ int anope_event_sethost(char *source, int ac, char **av) u = finduser(source); if (!u) { if (debug) { - alog("user: SETHOST for nonexistent user %s", source); + alog("debug: SETHOST for nonexistent user %s", source); } return MOD_CONT; } @@ -1221,7 +1221,7 @@ int anope_event_chghost(char *source, int ac, char **av) u = finduser(av[0]); if (!u) { if (debug) { - alog("user: CHGHOST for nonexistent user %s", av[0]); + alog("debug: CHGHOST for nonexistent user %s", av[0]); } return MOD_CONT; } diff --git a/src/protocol/unreal32.c b/src/protocol/unreal32.c index 01781e415..cee9c8ed1 100644 --- a/src/protocol/unreal32.c +++ b/src/protocol/unreal32.c @@ -1300,7 +1300,7 @@ int anope_event_setname(char *source, int ac, char **av) u = finduser(source); if (!u) { if (debug) { - alog("user: SETNAME for nonexistent user %s", source); + alog("debug: SETNAME for nonexistent user %s", source); } return MOD_CONT; } @@ -1319,7 +1319,7 @@ int anope_event_chgname(char *source, int ac, char **av) u = finduser(av[0]); if (!u) { if (debug) { - alog("user: CHGNAME for nonexistent user %s", av[0]); + alog("debug: CHGNAME for nonexistent user %s", av[0]); } return MOD_CONT; } @@ -1338,7 +1338,7 @@ int anope_event_setident(char *source, int ac, char **av) u = finduser(source); if (!u) { if (debug) { - alog("user: SETIDENT for nonexistent user %s", source); + alog("debug: SETIDENT for nonexistent user %s", source); } return MOD_CONT; } @@ -1356,7 +1356,7 @@ int anope_event_chgident(char *source, int ac, char **av) u = finduser(av[0]); if (!u) { if (debug) { - alog("user: CHGIDENT for nonexistent user %s", av[0]); + alog("debug: CHGIDENT for nonexistent user %s", av[0]); } return MOD_CONT; } @@ -1375,7 +1375,7 @@ int anope_event_sethost(char *source, int ac, char **av) u = finduser(source); if (!u) { if (debug) { - alog("user: SETHOST for nonexistent user %s", source); + alog("debug: SETHOST for nonexistent user %s", source); } return MOD_CONT; } @@ -1465,7 +1465,7 @@ int anope_event_chghost(char *source, int ac, char **av) u = finduser(av[0]); if (!u) { if (debug) { - alog("user: CHGHOST for nonexistent user %s", av[0]); + alog("debug: CHGHOST for nonexistent user %s", av[0]); } return MOD_CONT; } @@ -1631,7 +1631,7 @@ int anope_event_error(char *source, int ac, char **av) { if (av[0]) { if (debug) { - alog("ERROR: %s", av[0]); + alog("debug: %s", av[0]); } } return MOD_CONT; diff --git a/src/protocol/viagra.c b/src/protocol/viagra.c index 2c1caa359..851c42268 100644 --- a/src/protocol/viagra.c +++ b/src/protocol/viagra.c @@ -435,7 +435,7 @@ int anope_event_setname(char *source, int ac, char **av) u = finduser(source); if (!u) { if (debug) { - alog("user: SETNAME for nonexistent user %s", source); + alog("debug: SETNAME for nonexistent user %s", source); } return MOD_CONT; } @@ -460,7 +460,7 @@ int anope_event_chgname(char *source, int ac, char **av) u = finduser(av[0]); if (!u) { if (debug) { - alog("user: CHGNAME for nonexistent user %s", av[0]); + alog("debug: CHGNAME for nonexistent user %s", av[0]); } return MOD_CONT; } @@ -479,7 +479,7 @@ int anope_event_setident(char *source, int ac, char **av) u = finduser(source); if (!u) { if (debug) { - alog("user: SETIDENT for nonexistent user %s", source); + alog("debug: SETIDENT for nonexistent user %s", source); } return MOD_CONT; } @@ -498,7 +498,7 @@ int anope_event_chgident(char *source, int ac, char **av) u = finduser(av[0]); if (!u) { if (debug) { - alog("user: CHGIDENT for nonexistent user %s", av[0]); + alog("debug: CHGIDENT for nonexistent user %s", av[0]); } return MOD_CONT; } @@ -522,7 +522,7 @@ int anope_event_sethost(char *source, int ac, char **av) u = finduser(source); if (!u) { if (debug) { - alog("user: SETHOST for nonexistent user %s", source); + alog("debug: SETHOST for nonexistent user %s", source); } return MOD_CONT; } @@ -559,7 +559,7 @@ int anope_event_vs(char *source, int ac, char **av) u = finduser(av[0]); if (!u) { if (debug) { - alog("user: VS for nonexistent user %s", av[0]); + alog("debug: VS for nonexistent user %s", av[0]); } return MOD_CONT; } @@ -579,7 +579,7 @@ int anope_event_chghost(char *source, int ac, char **av) u = finduser(av[0]); if (!u) { if (debug) { - alog("user: CHGHOST for nonexistent user %s", av[0]); + alog("debug: CHGHOST for nonexistent user %s", av[0]); } return MOD_CONT; } @@ -659,7 +659,7 @@ int anope_event_error(char *source, int ac, char **av) { if (ac >= 1) { if (debug) { - alog("ERROR: %s", av[0]); + alog("debug: %s", av[0]); } } return MOD_CONT; |