1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-03 15:57:46 +02:00

Update prompt.c

Make id uppercase.
This commit is contained in:
Astonex 2013-08-14 11:23:38 +01:00
parent 2857e6af8f
commit 4a6edcbf1e

View File

@ -121,6 +121,11 @@ void cmd_add(ToxWindow *self, Messenger *m, char **args)
}
id_bin[i] = x;
}
for (i = 0; i < FRIEND_ADDRESS_SIZE; i++) {
id[i] = toupper(id[i]);
}
int num = m_addfriend(m, id_bin, (uint8_t*) msg, strlen(msg)+1);
switch (num) {
case FAERR_TOOLONG: