aboutsummaryrefslogtreecommitdiff
path: root/util-linux/rdate.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-10-05 23:12:49 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-10-05 23:12:49 +0000
commit000b9ba91f64a348d697fb22a546cfb4db1d9f0e (patch)
treea36bca5413a3305c46a24a95f45556125ebc2508 /util-linux/rdate.c
parentde59c0f58fa5dc75b753f94da61be92bfa0935ec (diff)
downloadbusybox-000b9ba91f64a348d697fb22a546cfb4db1d9f0e.tar.gz
eject: -T fix
Diffstat (limited to 'util-linux/rdate.c')
-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)
time(&current_time);
if (current_time == remote_time)
- bb_error_msg("Current time matches remote time.");
+ bb_error_msg("current time matches remote time");
else
if (stime(&remote_time) < 0)
- bb_perror_msg_and_die("Could not set time of day");
+ bb_perror_msg_and_die("cannot set time of day");
}
if ((flags & 1) == 0)