From 8df738163593a6e2589407b185039930ce599f02 Mon Sep 17 00:00:00 2001 From: Ali Fardan Date: Sat, 21 Nov 2020 07:31:53 +0300 Subject: add mkfile and fix compilation on 9front --- encode.c | 2 +- mkfile | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 mkfile diff --git a/encode.c b/encode.c index ae2d05e..75b7f90 100644 --- a/encode.c +++ b/encode.c @@ -82,7 +82,7 @@ uri_encode(struct uri *u) if (u->npath != 0) { for (i = 0; i < u->npath; i++) { - if ((i == 0) ? u->authority.host : 1) { + if (i != 0 || u->authority.host) { len += 1; /* / */ dup = realloc(ret, len); if (dup == NULL) { diff --git a/mkfile b/mkfile new file mode 100644 index 0000000..022fa74 --- /dev/null +++ b/mkfile @@ -0,0 +1,9 @@ +