mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-23 00:53:03 +01:00
guarantee unique nicks
This commit is contained in:
parent
7fed456e3b
commit
bde7aacc8d
@ -261,7 +261,7 @@ static void prompt_onGroupInvite(ToxWindow *self, Tox *m, int friendnumber, uint
|
|||||||
int n = add_group_req(group_pub_key, friendnumber);
|
int n = add_group_req(group_pub_key, friendnumber);
|
||||||
|
|
||||||
if (n == -1) {
|
if (n == -1) {
|
||||||
wprintw(self->window, "\nGroup chat queue is full. Discarding invite.\n");
|
wprintw(self->window, "\nSomething bad happened.\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -81,11 +81,24 @@ void on_action(Tox *m, int friendnumber, uint8_t *string, uint16_t length, void
|
|||||||
|
|
||||||
void on_nickchange(Tox *m, int friendnumber, uint8_t *string, uint16_t length, void *userdata)
|
void on_nickchange(Tox *m, int friendnumber, uint8_t *string, uint16_t length, void *userdata)
|
||||||
{
|
{
|
||||||
|
if (friendnumber < 0 || friendnumber > MAX_FRIENDS_NUM)
|
||||||
|
return;
|
||||||
|
|
||||||
if (length >= TOXIC_MAX_NAME_LENGTH) { /* length includes null byte */
|
if (length >= TOXIC_MAX_NAME_LENGTH) { /* length includes null byte */
|
||||||
string[TOXIC_MAX_NAME_LENGTH] = L'\0';
|
string[TOXIC_MAX_NAME_LENGTH] = L'\0';
|
||||||
length = TOXIC_MAX_NAME_LENGTH+1;
|
length = TOXIC_MAX_NAME_LENGTH+1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Append friendnumber to duplicate nicks to guarantee uniqueness */
|
||||||
|
int n = get_friendnum(string);
|
||||||
|
|
||||||
|
if (n != friendnumber && n != -1) {
|
||||||
|
char n_buf[strlen(string)+4]; /* must have room for chars relative to MAX_FRIENDS_NUM */
|
||||||
|
snprintf(n_buf, sizeof(n_buf), "%s%d", string, friendnumber);
|
||||||
|
strcpy(string, n_buf);
|
||||||
|
length = strlen(string) + 1;
|
||||||
|
}
|
||||||
|
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
|
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
|
||||||
|
Loading…
Reference in New Issue
Block a user