diff options
Diffstat (limited to 'bounce.c')
-rw-r--r-- | bounce.c | 2 |
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; } |