From ceecd3fd6f8e74bf8d4e9d3c757dc8a531971fe7 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Thu, 6 Sep 2018 07:31:12 +0200 Subject: config: Fix size type src/config.c:562:12: error: assuming signed overflow does not occur when simplifying conditional to constant [-Werror=strict-overflow] if (args < 1) { ^ Signed-off-by: Andreas Schneider --- src/config.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/config.c') diff --git a/src/config.c b/src/config.c index 3e94f6b8..537b3ba9 100644 --- a/src/config.c +++ b/src/config.c @@ -472,7 +472,8 @@ static int ssh_config_parse_line(ssh_session session, const char *line, case SOC_MATCH: { bool negate; - int result = 1, args = 0; + int result = 1; + size_t args = 0; enum ssh_config_match_e opt; *parsing = 0; @@ -559,7 +560,7 @@ static int ssh_config_parse_line(ssh_session session, const char *line, return -1; } } while (p != NULL && p[0] != '\0'); - if (args < 1) { + if (args == 0) { ssh_set_error(session, SSH_FATAL, "ERROR - Match keyword requires an argument"); SAFE_FREE(x); -- cgit v1.2.3