diff options
Diffstat (limited to 'util-linux/rdate.c')
-rw-r--r-- | util-linux/rdate.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/util-linux/rdate.c b/util-linux/rdate.c index cabcc7dbe..2b011ebb0 100644 --- a/util-linux/rdate.c +++ b/util-linux/rdate.c | |||
@@ -55,7 +55,7 @@ static time_t askremotedate(const char *host) | |||
55 | * the RFC 868 time 2,208,988,800 corresponds to 00:00 1 Jan 1970 GMT | 55 | * the RFC 868 time 2,208,988,800 corresponds to 00:00 1 Jan 1970 GMT |
56 | * Subtract the RFC 868 time to get Linux epoch | 56 | * Subtract the RFC 868 time to get Linux epoch |
57 | */ | 57 | */ |
58 | 58 | ||
59 | return(ntohl(nett) - RFC_868_BIAS); | 59 | return(ntohl(nett) - RFC_868_BIAS); |
60 | } | 60 | } |
61 | 61 | ||
@@ -63,10 +63,10 @@ int rdate_main(int argc, char **argv) | |||
63 | { | 63 | { |
64 | time_t remote_time; | 64 | time_t remote_time; |
65 | unsigned long flags; | 65 | unsigned long flags; |
66 | 66 | ||
67 | bb_opt_complementally = "-1"; | 67 | bb_opt_complementally = "-1"; |
68 | flags = bb_getopt_ulflags(argc, argv, "sp"); | 68 | flags = bb_getopt_ulflags(argc, argv, "sp"); |
69 | 69 | ||
70 | remote_time = askremotedate(argv[optind]); | 70 | remote_time = askremotedate(argv[optind]); |
71 | 71 | ||
72 | if (flags & 1) { | 72 | if (flags & 1) { |
@@ -78,9 +78,9 @@ int rdate_main(int argc, char **argv) | |||
78 | else | 78 | else |
79 | if (stime(&remote_time) < 0) | 79 | if (stime(&remote_time) < 0) |
80 | bb_perror_msg_and_die("Could not set time of day"); | 80 | bb_perror_msg_and_die("Could not set time of day"); |
81 | 81 | ||
82 | /* No need to check for the -p flag as it's the only option left */ | 82 | /* No need to check for the -p flag as it's the only option left */ |
83 | 83 | ||
84 | } else printf("%s", ctime(&remote_time)); | 84 | } else printf("%s", ctime(&remote_time)); |
85 | 85 | ||
86 | return EXIT_SUCCESS; | 86 | return EXIT_SUCCESS; |