aboutsummaryrefslogtreecommitdiff
path: root/bin/kiss-stat.c
diff options
context:
space:
mode:
Diffstat (limited to 'bin/kiss-stat.c')
-rw-r--r--bin/kiss-stat.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/kiss-stat.c b/bin/kiss-stat.c
index d03bd13..5d62855 100644
--- a/bin/kiss-stat.c
+++ b/bin/kiss-stat.c
@@ -9,12 +9,13 @@
#include <pwd.h>
#include <sys/stat.h>
#include <stdio.h>
+#include <string.h>
int main (int argc, char *argv[]) {
struct stat sb;
// Exit if no or multiple arguments are given
- if (argc != 2) {
+ if (argc != 2 || strcmp(argv[1], "--help") == 0) {
fprintf(stderr, "Usage: %s <pathname>\n", argv[0]);
return(1);
}