buildroot-2017.08-rc1/package/mkpasswd/mkpasswd.c:183]: (style) Checking if unsigned variable 'rounds' is less than zero. Source code is rounds = strtol(optarg, &p, 10); if (p == NULL || *p != '\0' || rounds < 0) { Maybe a call to strtoul would be better ?
This code comes from the whois project at https://github.com/rfc1036/whois/blob/next/mkpasswd.c. If there are any issues, please report them to the upstream project. We can then backport the fix, or upgrade to a newer version.