aboutsummaryrefslogtreecommitdiffstats
path: root/ip/ip.c
diff options
context:
space:
mode:
authorStephen Hemminger <stephen.hemminger@vyatta.com>2008-01-21 13:46:08 -0800
committerStephen Hemminger <stephen.hemminger@vyatta.com>2008-01-21 13:46:08 -0800
commit692e075787835c6d89e7b67ec0c4df84e69466a7 (patch)
tree3e4c23516ebdcc59bd14d67ad0f0a8d0ea7d57bb /ip/ip.c
parent6f313868aeb4014ea5b965eeb446f7ba991b4a0a (diff)
downloadplatform_external_iproute2-692e075787835c6d89e7b67ec0c4df84e69466a7.tar.gz
platform_external_iproute2-692e075787835c6d89e7b67ec0c4df84e69466a7.tar.bz2
platform_external_iproute2-692e075787835c6d89e7b67ec0c4df84e69466a7.zip
fix typo in ip batch error message
Signed-off-by: Stephen Hemminger <stephen.hemminger@vyatta.com>
Diffstat (limited to 'ip/ip.c')
-rw-r--r--ip/ip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ip/ip.c b/ip/ip.c
index 4bdb83b3..aeb8c68c 100644
--- a/ip/ip.c
+++ b/ip/ip.c
@@ -103,7 +103,7 @@ static int batch(const char *name)
if (name && strcmp(name, "-") != 0) {
if (freopen(name, "r", stdin) == NULL) {
- fprintf(stderr, "Cannot open file \"%s\" for reading: %s=n",
+ fprintf(stderr, "Cannot open file \"%s\" for reading: %s\n",
name, strerror(errno));
return -1;
}