Some interactive elements (branch dropdowns, the user menu, the clone popover) need JavaScript. Reading repositories, issues, patches, and the docs works without it; submitting forms also works as long as you can reach them via direct links.
Radish
alpha
Explore
Docs
Sign in
H
HardenedBSD-pkg
rad:z3QDZAW2FAfuLvihrhiyDC9fAD8G9
HardenedBSD Package Manager
Clone
Radicle
Git (anonymous pull)
Log in
to clone via SSH
Source
Commits
10440
Issues
Patches
Jobs
Commits
›
d9817e8a352e1cbff312a982be66d7d6e1aac8ed
Fix parsing key/value list from env
Baptiste Daroussin
committed
11 years ago
commit d9817e8a352e1cbff312a982be66d7d6e1aac8ed
parent
99aee0fc6ca3ed14a0a72079ad13d00a758a3d38
1 file changed
+1
-1
modified
libpkg/pkg_config.c
@@ -969,7 +969,7 @@ pkg_ini(const char *path, const char *reposdir, pkg_init_flags flags)
buf++;
walk = buf;
}
-
key = walk;
+
k = walk;
value = walk;
while (*value != '\0') {
if (*value == '=')