From 337eae188206e2a6f9f94c613c1a5e8070391ec8 Mon Sep 17 00:00:00 2001 From: Thierry FOURNIER Date: Thu, 26 Nov 2015 19:48:04 +0100 Subject: [PATCH] BUG/MINOR: stream: bad return code In error case, we expect the enum ACT_RET_PRS_ERR, but the function "stream_parse_use_service()" returns "-1" This patch must be backported in 1.6 --- src/stream.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stream.c b/src/stream.c index e98ba9f2d..0d18f9c2f 100644 --- a/src/stream.c +++ b/src/stream.c @@ -3302,7 +3302,7 @@ static enum act_parse_ret stream_parse_use_service(const char **args, int *cur_a /* Check if the service name exists. */ if (*(args[*cur_arg]) == 0) { memprintf(err, "'%s' expects a service name.", args[0]); - return -1; + return ACT_RET_PRS_ERR; } /* lookup for keyword corresponding to a service. */