aboutsummaryrefslogtreecommitdiff
path: root/pseudoclients
diff options
context:
space:
mode:
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;
}