summaryrefslogtreecommitdiff
path: root/src/fe-common/core
diff options
context:
space:
mode:
authordequis <dx@dxzone.com.ar>2018-01-07 01:44:48 -0300
committerdequis <dx@dxzone.com.ar>2018-01-07 01:45:12 -0300
commitf9c8365999c5319be6970dcf27f21190b0481314 (patch)
tree2e71524f7e960bde7da54f4f0a173c1f35d2b1ea /src/fe-common/core
parent121a4971e61176e326ee3d2f71867e87732f4519 (diff)
downloadirssi-f9c8365999c5319be6970dcf27f21190b0481314.zip
fe-common-core: fix redeclaration of server_tag_len
Diffstat (limited to 'src/fe-common/core')
-rw-r--r--src/fe-common/core/fe-common-core.c2
1 files changed, 1 insertions, 1 deletions
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') {