summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/chanserv.c2
-rw-r--r--src/mail.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/chanserv.c b/src/chanserv.c
index 07ce73299..d6c8a6970 100644
--- a/src/chanserv.c
+++ b/src/chanserv.c
@@ -1570,7 +1570,7 @@ int check_kick(User * user, char *chan, time_t chants)
if (akick->flags & AK_ISNICK)
get_idealban(ci, user, mask, sizeof(mask));
else
- strcpy(mask, akick->u.mask);
+ strscpy(mask, akick->u.mask, sizeof(mask));
reason = akick->reason ? akick->reason : CSAutokickReason;
goto kick;
}
diff --git a/src/mail.c b/src/mail.c
index fccad34fe..c81d7776a 100644
--- a/src/mail.c
+++ b/src/mail.c
@@ -242,7 +242,7 @@ int MailValidate(const char *email)
if (!email)
return 0;
- strcpy(copy, email);
+ strscpy(copy, email, sizeof(copy));
domain = strchr(copy, '@');
if (!domain)