aboutsummaryrefslogtreecommitdiff
path: root/util-linux/rdate.c
diff options
context:
space:
mode:
authorTim Riker <tim@rikers.org>2006-01-25 00:08:53 +0000
committerTim Riker <tim@rikers.org>2006-01-25 00:08:53 +0000
commitc1ef7bdd8d002ae0889efcf883d0e1b7faa938d4 (patch)
tree5f329b7d0c7f20ecced0dc7581a9ba6dc720d965 /util-linux/rdate.c
parentf64ff682a3d58dbb627e760e6fe1ec21d9ccdf61 (diff)
downloadbusybox-c1ef7bdd8d002ae0889efcf883d0e1b7faa938d4.tar.gz
just whitespace
Diffstat (limited to 'util-linux/rdate.c')
-rw-r--r--util-linux/rdate.c10
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)
* the RFC 868 time 2,208,988,800 corresponds to 00:00 1 Jan 1970 GMT
* Subtract the RFC 868 time to get Linux epoch
*/
-
+
return(ntohl(nett) - RFC_868_BIAS);
}
@@ -63,10 +63,10 @@ int rdate_main(int argc, char **argv)
{
time_t remote_time;
unsigned long flags;
-
+
bb_opt_complementally = "-1";
flags = bb_getopt_ulflags(argc, argv, "sp");
-
+
remote_time = askremotedate(argv[optind]);
if (flags & 1) {
@@ -78,9 +78,9 @@ int rdate_main(int argc, char **argv)
else
if (stime(&remote_time) < 0)
bb_perror_msg_and_die("Could not set time of day");
-
+
/* No need to check for the -p flag as it's the only option left */
-
+
} else printf("%s", ctime(&remote_time));
return EXIT_SUCCESS;