sgw | Static git web (fork of stagit) |
| download: https://git.y1.nz/archives/sgw.tar.gz | |
| README | Files | Log | Refs | LICENSE |
commit ae1f11103bd82fd2175b572295f607ce6097b50a parent 6cf782cc14ea5bf98242e80dba6737e28cc9e6a1 Author: Emma Weaver <emma@waeaves.com> Date: Thu, 18 Jun 2026 01:27:38 -0400 Fixed silly segfault Diffstat:
| M | main.c | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/main.c b/main.c @@ -1683,7 +1683,7 @@ main(int argc, const char *argv[]) if (opt.index) begin_index(); for (i = 0; i < opt.repo_count; i++) { - put_index_category(index_fp, opt.categories[i], i == 0); + if (opt.index) put_index_category(index_fp, opt.categories[i], i == 0); result = write_repo_pages(opt.repo_dirs[i]); if(result > 0) return 1; }
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.