1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-06-29 14:27:45 +02:00

small fix

This commit is contained in:
Jfreegman 2014-10-04 17:01:02 -04:00
parent 8c3e3ebe24
commit bd69c8da18
No known key found for this signature in database
GPG Key ID: 3627F3144076AE63

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)