s3: Use strtoul since id types are unsigned
[abartlet/samba.git/.git] / source3 / nsswitch / wbinfo.c
index d14cfe94b72a0619756a77ede3dc049dbefa79bc..c85e210cc04de2fd999fc2085e3d0a12fc66aaee 100644 (file)
@@ -146,8 +146,8 @@ static bool parse_mapping_arg(char *arg, int *id, char **sid)
                return false;
 
        /* Because atoi() can return 0 on invalid input, which would be a valid
-        * UID/GID we must use strtol() and do error checking */
-       *id = strtol(tmp, &endptr, 10);
+        * UID/GID we must use strtoul() and do error checking */
+       *id = strtoul(tmp, &endptr, 10);
 
        if (endptr[0] != '\0')
                return false;