Commit Diff


commit - 077f6c5a028d1105ce638b73bf2571e2df757471
commit + 9460dac0131b3ccf5044ebfb1838f31959e4526f
blob - adcf32bd3bcd3895638285f9de26c835533cd0b1
blob + ae00ec19424904c771bc4f936d397a6a916d792a
--- gotweb/files/htdocs/gotweb/gotweb.css
+++ gotweb/files/htdocs/gotweb/gotweb.css
@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 2019 Jerome Kasper <neon.king.fr@gmail.com>
- * Copyright (c) 2019 Tracey Emery <tracey@traceyemery.net>
+ * Copyright (c) 2019, 2020 Tracey Emery <tracey@traceyemery.net>
  *
  * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
blob - 5190de1def1dd4776929abc2a9e0fdac3fee2c4d
blob + 2bfe933b886c0462b186149927ffc58e690a107c
--- gotweb/gotweb.c
+++ gotweb/gotweb.c
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2019 Tracey Emery <tracey@traceyemery.net>
+ * Copyright (c) 2019, 2020 Tracey Emery <tracey@traceyemery.net>
  * Copyright (c) 2018, 2019 Stefan Sperling <stsp@openbsd.org>
  * Copyright (c) 2014, 2015, 2017 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -125,7 +125,6 @@ enum tags {
 };
 
 struct buf {
-	/* buffer handle, buffer size, and data length */
 	u_char	*cb_buf;
 	size_t	 cb_size;
 	size_t	 cb_len;
@@ -659,7 +658,7 @@ gw_tag(struct trans *gw_trans)
 	log = gw_get_repo_log(gw_trans, NULL, gw_trans->commit, 1, LOGTAG);
 
 	if (log != NULL && strcmp(log, "") != 0) {
-		if ((asprintf(&log_html, log_tree, log)) == -1)
+		if ((asprintf(&log_html, log_tag, log)) == -1)
 			return got_error_from_errno("asprintf");
 		khttp_puts(gw_trans->gw_req, log_html);
 		free(log_html);
blob - 40a2d1de847af53951e4443e30f95c3e0d89aad4
blob + 664f2731e0a19f79ff966dd2bfcc7a1466a2c93b
--- gotweb/gotweb.h
+++ gotweb/gotweb.h
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2019 Tracey Emery <tracey@traceyemery.net>
+ * Copyright (c) 2019, 2020 Tracey Emery <tracey@traceyemery.net>
  * Copyright (c) 2018, 2019 Stefan Sperling <stsp@openbsd.org>
  *
  * Permission to use, copy, modify, and distribute this software for any
blob - 06568cab063765adde50f0bd7a5d3e576b27f6ec
blob + a709ec3d60baf2b22ef8cf771596f8f6670aade7
--- gotweb/gotweb_ui.h
+++ gotweb/gotweb_ui.h
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2019 Tracey Emery <tracey@traceyemery.net>
+ * Copyright (c) 2019, 2020 Tracey Emery <tracey@traceyemery.net>
  *
  * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above