aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTest_User <hax@andrewyu.org>2024-09-22 13:54:05 -0400
committerTest_User <hax@andrewyu.org>2024-09-22 13:54:05 -0400
commitad5ab5b60066a5d290dfb0d3c04617449ae18c8d (patch)
treef86f523eb7a1552c2d51c5bfd0af08255d3398a1
parenteb0568ddce76b098410bfb8096bf6632eead4a70 (diff)
downloadhaxircd-ad5ab5b60066a5d290dfb0d3c04617449ae18c8d.tar.gz
haxircd-ad5ab5b60066a5d290dfb0d3c04617449ae18c8d.zip
Fix a typo
Diffstat (limited to '')
-rw-r--r--pseudoclients/services.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pseudoclients/services.c b/pseudoclients/services.c
index 6eb01d6..f0e9c00 100644
--- a/pseudoclients/services.c
+++ b/pseudoclients/services.c
@@ -530,7 +530,7 @@ void services_pseudoclient_handle_privmsg(struct string from, struct string sour
} else if (msg.len >= 13 && case_string_eq((struct string){.data = msg.data, .len = 13}, STRING("DROP ACCOUNT "))) {
struct string required_account_name = {.data = msg.data + 13, .len = msg.len - 13};
if (user->account_name.len == 0 || !STRING_EQ(required_account_name, user->account_name)) {
- notice(SID, NICKSERV_UID, user->uid, STRING("You're must be logged into the account that you wish to drop."));
+ notice(SID, NICKSERV_UID, user->uid, STRING("You must be logged into the account that you wish to drop."));
goto drop_fail;
}