diff options
Diffstat (limited to 'ps.c')
-rw-r--r-- | ps.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -128,8 +128,9 @@ extern int ps_main(int argc, char **argv) | |||
128 | 128 | ||
129 | 129 | ||
130 | 130 | ||
131 | if (argc > 1 && **(argv + 1) == '-') | 131 | if (argc > 1 && strcmp(argv[1], "--help") == 0) { |
132 | usage ("ps\n\nReport process status\n\nThis version of ps accepts no options.\n"); | 132 | usage ("ps\n\nReport process status\n\nThis version of ps accepts no options.\n"); |
133 | } | ||
133 | 134 | ||
134 | dir = opendir("/proc"); | 135 | dir = opendir("/proc"); |
135 | if (!dir) | 136 | if (!dir) |