mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 20:33:46 +02:00
Replace strocpy with g_strlcpy
The only difference was that the former returned 1 if the buffer was overflown, but the return value was never checked.
This commit is contained in:
parent
8289f36075
commit
72712a0c62
4 changed files with 4 additions and 21 deletions
|
|
@ -48,7 +48,7 @@ NICK_REC *irc_nicklist_insert(IRC_CHANNEL_REC *channel, const char *nick,
|
|||
rec->send_massjoin = send_massjoin;
|
||||
|
||||
if (prefixes != NULL) {
|
||||
strocpy(rec->prefixes, prefixes, sizeof(rec->prefixes));
|
||||
g_strlcpy(rec->prefixes, prefixes, sizeof(rec->prefixes));
|
||||
}
|
||||
|
||||
nicklist_insert(CHANNEL(channel), rec);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue