mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-17 10:35:10 +00:00
Fix incorrect param order.
This commit is contained in:
parent
ab0cdac0a6
commit
36faf216df
@ -108,7 +108,7 @@ void ev_num(irc_session_t *session, unsigned int event, const char *,
|
|||||||
if (event == 433) { // nick in use
|
if (event == 433) { // nick in use
|
||||||
int len = strlen(params[1]) + 4;
|
int len = strlen(params[1]) + 4;
|
||||||
char *newnick = (char *)malloc(len);
|
char *newnick = (char *)malloc(len);
|
||||||
strncpy(newnick, len, params[1]);
|
strncpy(newnick, params[1], len);
|
||||||
attachment[1] += rand() % 10;
|
attachment[1] += rand() % 10;
|
||||||
attachment[2] += rand() % 10;
|
attachment[2] += rand() % 10;
|
||||||
strncat(newnick, attachment, len - 1);
|
strncat(newnick, attachment, len - 1);
|
||||||
|
Loading…
Reference in New Issue
Block a user