From f9c8365999c5319be6970dcf27f21190b0481314 Mon Sep 17 00:00:00 2001 From: dequis Date: Sun, 7 Jan 2018 01:44:48 -0300 Subject: fe-common-core: fix redeclaration of server_tag_len --- src/fe-common/core/fe-common-core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fe-common/core/fe-common-core.c b/src/fe-common/core/fe-common-core.c index a8726314..791f56d4 100644 --- a/src/fe-common/core/fe-common-core.c +++ b/src/fe-common/core/fe-common-core.c @@ -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') { -- cgit v1.2.3