aboutsummaryrefslogtreecommitdiff
path: root/procps
diff options
context:
space:
mode:
Diffstat (limited to 'procps')
-rw-r--r--procps/uptime.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/procps/uptime.c b/procps/uptime.c
index efdbccf00..6a8bfa638 100644
--- a/procps/uptime.c
+++ b/procps/uptime.c
@@ -46,6 +46,9 @@ extern int uptime_main(int argc, char **argv)
46 struct tm *current_time; 46 struct tm *current_time;
47 time_t current_secs; 47 time_t current_secs;
48 48
49 if (argc > 1 && strcmp(argv[1], "--help") == 0)
50 usage(uptime_usage);
51
49 time(&current_secs); 52 time(&current_secs);
50 current_time = localtime(&current_secs); 53 current_time = localtime(&current_secs);
51 54