Commit 692e0757 authored by Stephen Hemminger's avatar Stephen Hemminger

fix typo in ip batch error message

Signed-off-by: default avatarStephen Hemminger <stephen.hemminger@vyatta.com>
parent 6f313868
...@@ -103,7 +103,7 @@ static int batch(const char *name) ...@@ -103,7 +103,7 @@ static int batch(const char *name)
if (name && strcmp(name, "-") != 0) { if (name && strcmp(name, "-") != 0) {
if (freopen(name, "r", stdin) == NULL) { 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)); name, strerror(errno));
return -1; return -1;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment