summaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2019-03-08 18:26:30 +0100
committerHiltjo Posthuma <hiltjo@codemadness.org>2019-03-08 18:26:30 +0100
commitad511a4f7ab22c360ded1d4074d9148087b5395d (patch)
tree647809656031d33078e84a80a6208924a3ee24e0 /util.c
parent5c7b95403cbbd62c225a78ed565efa0e76af54b0 (diff)
util: pedantic snprintf improvement
POSIX says about snprintf: "If an output error was encountered, these functions shall return a negative value". So check for < 0 instead of -1. Afaik all implementations return -1 though.
Diffstat (limited to 'util.c')
-rw-r--r--util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util.c b/util.c
index e9461ea..e5d0ada 100644
--- a/util.c
+++ b/util.c
@@ -149,7 +149,7 @@ absuri(char *buf, size_t bufsiz, const char *link, const char *base)
host,
port[0] ? ":" : "",
port);
- if (r == -1 || (size_t)r >= sizeof(tmp))
+ if (r < 0 || (size_t)r >= sizeof(tmp))
return -1; /* error or truncation */
/* relative to root */