From 827f42ba739a8aee3519e8657307558f417cb91f Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Wed, 21 Jan 2015 02:15:13 +1100 Subject: [PATCH] Fix impossible >= UNIX_PATH_MAX warning --- src/libckpool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libckpool.c b/src/libckpool.c index 8c367bbb..f2937a05 100644 --- a/src/libckpool.c +++ b/src/libckpool.c @@ -793,7 +793,7 @@ int _open_unix_client(const char *server_path, const char *file, const char *fun if (likely(server_path)) { len = strlen(server_path); - if (unlikely(len < 1 || len > UNIX_PATH_MAX)) { + if (unlikely(len < 1 || len >= UNIX_PATH_MAX)) { LOGERR("Invalid server path length %d in open_unix_client", len); goto out; }