summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authormichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2014-06-05 11:54:16 +0000
committermichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2014-06-05 11:54:16 +0000
commitacaa02f084a8cbad4f1410c010e0b36e96216233 (patch)
tree5257e78afe92c08ed30d37ef5549430a7941c7ce /modules
parent57f455b58bb07452ed5e35199eb195e94a87bd93 (diff)
- m_locops.c, m_globops.c: removed extra colons
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@3845 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'modules')
-rw-r--r--modules/m_globops.c4
-rw-r--r--modules/m_locops.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/modules/m_globops.c b/modules/m_globops.c
index ac00f2e..fb8297a 100644
--- a/modules/m_globops.c
+++ b/modules/m_globops.c
@@ -66,7 +66,7 @@ mo_globops(struct Client *client_p, struct Client *source_p,
sendto_server(NULL, NOCAPS, CAP_TS6, ":%s GLOBOPS :%s",
source_p->name, message);
- sendto_realops_flags(UMODE_ALL, L_ALL, SEND_GLOBAL, "from: %s: %s",
+ sendto_realops_flags(UMODE_ALL, L_ALL, SEND_GLOBAL, "from %s: %s",
source_p->name, message);
return 0;
}
@@ -83,7 +83,7 @@ ms_globops(struct Client *client_p, struct Client *source_p,
sendto_server(client_p, NOCAPS, CAP_TS6, ":%s GLOBOPS :%s",
source_p->name, parv[1]);
- sendto_realops_flags(UMODE_ALL, L_ALL, SEND_GLOBAL, "from: %s: %s",
+ sendto_realops_flags(UMODE_ALL, L_ALL, SEND_GLOBAL, "from %s: %s",
source_p->name, parv[1]);
return 0;
}
diff --git a/modules/m_locops.c b/modules/m_locops.c
index 2d00f0f..56e9cb1 100644
--- a/modules/m_locops.c
+++ b/modules/m_locops.c
@@ -62,7 +62,7 @@ mo_locops(struct Client *client_p, struct Client *source_p,
return 0;
}
- sendto_realops_flags(UMODE_LOCOPS, L_ALL, SEND_LOCOPS, "from: %s: %s",
+ sendto_realops_flags(UMODE_LOCOPS, L_ALL, SEND_LOCOPS, "from %s: %s",
source_p->name, message);
cluster_a_line(source_p, "LOCOPS", 0, SHARED_LOCOPS, message);
return 0;
@@ -83,7 +83,7 @@ ms_locops(struct Client *client_p, struct Client *source_p,
if (find_matching_name_conf(CONF_ULINE, source_p->servptr->name,
"*", "*", SHARED_LOCOPS))
- sendto_realops_flags(UMODE_LOCOPS, L_ALL, SEND_LOCOPS, "from: %s: %s",
+ sendto_realops_flags(UMODE_LOCOPS, L_ALL, SEND_LOCOPS, "from %s: %s",
source_p->name, parv[2]);
return 0;
}