From 8b147c9196d9068d0fc5e5a8919b84e8cbb97ef4 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Fri, 6 Dec 2013 17:51:14 -0500 Subject: Fix config token parsing. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Resolves: https://fedorahosted.org/gss-proxy/ticket/112 Signed-off-by: Simo Sorce Reviewed-by: Günther Deschner --- proxy/src/gp_config.c | 1 - 1 file changed, 1 deletion(-) diff --git a/proxy/src/gp_config.c b/proxy/src/gp_config.c index 2fc4a6f..ee96975 100644 --- a/proxy/src/gp_config.c +++ b/proxy/src/gp_config.c @@ -153,7 +153,6 @@ static int parse_flags(const char *value, uint32_t *storage) return ENOMEM; } - token = strtok_r(str, ", ", &handle); for (token = strtok_r(str, ", ", &handle); token != NULL; token = strtok_r(NULL, ", ", &handle)) { -- cgit