From 193b81a633501ccf6155935a50523cd802858410 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Tue, 17 Dec 2013 22:09:21 +0000 Subject: [PATCH] daemon: Improve error message for readlink call. --- daemon/link.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/link.c b/daemon/link.c index 019634777..43c55f848 100644 --- a/daemon/link.c +++ b/daemon/link.c @@ -41,7 +41,7 @@ do_readlink (const char *path) link = areadlink (path); CHROOT_OUT; if (link == NULL) { - reply_with_perror ("readlink"); + reply_with_perror ("%s", path); return NULL; }