summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util.c b/util.c
index 6aef1f3..e1ff9bd 100644
--- a/util.c
+++ b/util.c
@@ -166,7 +166,7 @@ uri_makeabs(struct uri *a, struct uri *u, struct uri *b)
} else if (u->path[0] == '/') {
strlcpy(a->path, u->path, sizeof(a->path));
} else {
- a->path[0] = (a->host[0] && b->path[0] != '/') ? '/' : '\0';
+ a->path[0] = (b->host[0] && b->path[0] != '/') ? '/' : '\0';
a->path[1] = '\0';
if ((p = strrchr(b->path, '/'))) {