uniq: strncmp(a,b, -1) might be problematic, use INT_MAX instead

This commit is contained in:
Denis Vlasenko 2009-03-09 16:43:28 +00:00
parent 9257671c76
commit 1a6adbd71b

View File

@ -45,7 +45,7 @@ int uniq_main(int argc UNUSED_PARAM, char **argv)
};
skip_fields = skip_chars = 0;
max_chars = -1;
max_chars = INT_MAX;
opt_complementary = "f+:s+:w+";
opt = getopt32(argv, "cduf:s:w:", &skip_fields, &skip_chars, &max_chars);