Fixed exit code when calling checkpw -h; Set to 0.

This commit is contained in:
Johannes Findeisen 2024-08-18 01:47:45 +02:00
commit df4aa0175f

View file

@ -197,7 +197,7 @@ int main(int argc, char *argv[]) {
break;
case 'h':
print_usage(argv[0]);
exit(1);
exit(0);
case 'i':
interactive = true;
break;