1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-29 04:45:57 -04:00

fe-common-core: fix redeclaration of server_tag_len

This commit is contained in:
dequis 2018-01-07 01:44:48 -03:00
parent 121a4971e6
commit f9c8365999

View File

@ -478,7 +478,7 @@ gboolean strarray_find_dest(char **array, const TEXT_DEST_REC *dest)
return FALSE;
}
int server_tag_len = dest->server_tag != NULL ? strlen(dest->server_tag) : 0;
server_tag_len = dest->server_tag != NULL ? strlen(dest->server_tag) : 0;
for (tmp = array; *tmp != NULL; tmp++) {
char *str = *tmp;
if (*str == '\0') {