Changeset b6a3fbf
- Timestamp:
- 2015-08-27T07:25:07Z (9 years ago)
- Branches:
- master
- Children:
- aa3b61e
- Parents:
- 3c23681
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
irc_channel.c
r3c23681 rb6a3fbf 593 593 594 594 translit_name = g_convert_with_fallback(hint, -1, "ASCII//TRANSLIT", "UTF-8", "", NULL, &bytes_written, NULL); 595 596 if (!translit_name) { 597 /* Same thing as in nick_gen() in nick.c, try again without //TRANSLIT */ 598 translit_name = g_convert_with_fallback(hint, -1, "ASCII", "UTF-8", "", NULL, &bytes_written, NULL); 599 } 600 601 if (!translit_name) { 602 return NULL; 603 } 604 595 605 if (bytes_written > MAX_NICK_LENGTH) { 596 606 translit_name[MAX_NICK_LENGTH] = '\0';
Note: See TracChangeset
for help on using the changeset viewer.