Print usage() when we are left with arguments

This commit is contained in:
Laslo Hunhold 2017-08-10 22:23:55 +02:00 committed by Aaron Marcher
parent c9d47405f4
commit 00ce7a746a
No known key found for this signature in database
GPG Key ID: 74B048E5C2474F9A
1 changed files with 4 additions and 0 deletions

View File

@ -861,6 +861,10 @@ main(int argc, char *argv[])
usage();
} ARGEND
if (argc) {
usage();
}
memset(&act, 0, sizeof(act));
act.sa_handler = sighandler;
sigaction(SIGINT, &act, 0);