Radish alpha
H
HardenedBSD Package Manager
Radicle
Git (anonymous pull)
Log in to clone via SSH
url_decode: remove + handling to be backward compatible
Baptiste Daroussin committed 1 year ago
commit fce4d16ae6ed707f9ef6be4fc15d49fe10b321c4
parent 81c1ce0fc3e237d8dd74702e42ff28d5e40bd719
1 file changed +0 -2
modified libpkg/pkg_manifest.c
@@ -256,8 +256,6 @@ url_decode(const char* src, size_t len)
				*p++ = (char)value;
				i += 2;
			}
-
		} else if (src[i] == '+') {
-
			*p++ = ' ';
		} else {
			*p++ = src[i];
		}