Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2001-01-31 22:00:21 +0300
committerMatt Kraai <kraai@debian.org>2001-01-31 22:00:21 +0300
commitdd19c6990496023fe23fefef8f1798740f7d39c6 (patch)
tree3933adefa4171173db78fa2389146ac89f4edb86 /rdate.c
parent63ec2732454a0c973305794e185e488106f6b282 (diff)
Removed trailing \n from error_msg{,_and_die} messages.
Diffstat (limited to 'rdate.c')
-rw-r--r--rdate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rdate.c b/rdate.c
index 0ad339be8..d350be877 100644
--- a/rdate.c
+++ b/rdate.c
@@ -72,7 +72,7 @@ time_t askremotedate(char *host)
}
if (read(fd, (void *)&nett, 4) != 4) { /* read time from server */
close(fd);
- error_msg("%s did not send the complete time\n", host);
+ error_msg("%s did not send the complete time", host);
}
close(fd);