summary refs log tree commit diff
path: root/bounce.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-11-07 22:32:37 -0500
committerJune McEnroe <june@causal.agency>2019-11-07 22:32:37 -0500
commit4498b2298ecd14f933133e555a06f90c8a9640ab (patch)
tree815aa41a1752f06cdf9434c2be25eef9edfe70dd /bounce.c
parentCall clientConsume before clientRecv (diff)
downloadpounce-4498b2298ecd14f933133e555a06f90c8a9640ab.tar.gz
pounce-4498b2298ecd14f933133e555a06f90c8a9640ab.zip
Include path in readlinkat error
Diffstat (limited to 'bounce.c')
-rw-r--r--bounce.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bounce.c b/bounce.c
index 5f615aa..407dd44 100644
--- a/bounce.c
+++ b/bounce.c
@@ -107,7 +107,7 @@ struct SplitPath {
 static bool linkTarget(char *target, size_t cap, int dir, const char *file) {
 	ssize_t len = readlinkat(dir, file, target, cap - 1);
 	if (len < 0 && errno == EINVAL) return false;
-	if (len < 0) err(EX_IOERR, "readlinkat");
+	if (len < 0) err(EX_NOINPUT, "%s", file);
 	target[len] = '\0';
 	return true;
 }