aboutsummaryrefslogtreecommitdiff
path: root/util-linux
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-10-05 23:12:49 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-10-05 23:12:49 +0000
commitf4160c8703abe6ababd6915c656abecf4bfe92e5 (patch)
tree7e6806573a90e3b755203535990dd01bd82d98e9 /util-linux
parent445754ff183de68a177b8482cf6df237bc4d3532 (diff)
downloadbusybox-w32-f4160c8703abe6ababd6915c656abecf4bfe92e5.tar.gz
busybox-w32-f4160c8703abe6ababd6915c656abecf4bfe92e5.tar.bz2
busybox-w32-f4160c8703abe6ababd6915c656abecf4bfe92e5.zip
eject: -T fix
git-svn-id: svn://busybox.net/trunk/busybox@16314 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'util-linux')
-rw-r--r--util-linux/rdate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util-linux/rdate.c b/util-linux/rdate.c
index c24465dc3..6ad055434 100644
--- a/util-linux/rdate.c
+++ b/util-linux/rdate.c
@@ -73,10 +73,10 @@ int rdate_main(int argc, char **argv)
73 73
74 time(&current_time); 74 time(&current_time);
75 if (current_time == remote_time) 75 if (current_time == remote_time)
76 bb_error_msg("Current time matches remote time."); 76 bb_error_msg("current time matches remote time");
77 else 77 else
78 if (stime(&remote_time) < 0) 78 if (stime(&remote_time) < 0)
79 bb_perror_msg_and_die("Could not set time of day"); 79 bb_perror_msg_and_die("cannot set time of day");
80 } 80 }
81 81
82 if ((flags & 1) == 0) 82 if ((flags & 1) == 0)