summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
}