summaryrefslogtreecommitdiff
path: root/lib/netns_linux.c
diff options
context:
space:
mode:
authorQuentin Young <qlyoung@users.noreply.github.com>2018-07-06 11:24:25 -0400
committerGitHub <noreply@github.com>2018-07-06 11:24:25 -0400
commit9d90a8608373c1312b36582a72793a750665a7fe (patch)
tree6087a249b0ebddd8551a4b8c2dd0842d721c7452 /lib/netns_linux.c
parente8ec11787ba8accf4ff2cd1484a01b96750180c1 (diff)
parent0faeba264e73e5a16191a2989dd03288b67cfb2a (diff)
Merge pull request #2628 from pguibert6WIND/realpath_debug
lib: add the pathname to get the realpath in case of failure
Diffstat (limited to 'lib/netns_linux.c')
-rw-r--r--lib/netns_linux.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/netns_linux.c b/lib/netns_linux.c
index a3fae8f39f..a80b51fa00 100644
--- a/lib/netns_linux.c
+++ b/lib/netns_linux.c
@@ -435,10 +435,13 @@ char *ns_netns_pathname(struct vty *vty, const char *name)
if (!result) {
if (vty)
- vty_out(vty, "Invalid pathname: %s\n",
+ vty_out(vty, "Invalid pathname for %s: %s\n",
+ pathname,
safe_strerror(errno));
else
- zlog_warn("Invalid pathname: %s", safe_strerror(errno));
+ zlog_warn("Invalid pathname for %s: %s",
+ pathname,
+ safe_strerror(errno));
return NULL;
}
check_base = basename(pathname);