Code

Fixed various signedness issues identified by -Wextra.
[collectd.git] / src / apache.c
index 091d594741612e3f12d99f3852af58bf90785fbd..4fa7aa1b11a9f8dbf192271abfe65322be0e3806 100644 (file)
@@ -148,7 +148,7 @@ static int init (void)
 
                status = ssnprintf (credentials, sizeof (credentials), "%s:%s",
                                user, (pass == NULL) ? "" : pass);
-               if (status >= sizeof (credentials))
+               if ((status < 0) || ((size_t) status >= sizeof (credentials)))
                {
                        ERROR ("apache plugin: init: Returning an error "
                                        "because the credentials have been "