1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-06-19 18:36:36 +02:00

small fix

This commit is contained in:
Jfreegman
2014-10-04 17:01:02 -04:00
parent 8c3e3ebe24
commit bd69c8da18

View File

@ -413,8 +413,8 @@ void friendlist_onFriendAdded(ToxWindow *self, Tox *m, int32_t num, bool sort)
strcpy(Friends.list[i].name, UNKNOWN_NAME);
Friends.list[i].namelength = strlen(UNKNOWN_NAME);
} else { /* Enforce toxic's maximum name length */
Friends.list[i].namelength = len;
snprintf(Friends.list[i].name, sizeof(Friends.list[i].name), "%s", tempname);
Friends.list[i].namelength = strlen(Friends.list[i].name);
}
if (i == Friends.max_idx)