timekeeper

[Abandoned unfinished] CGI web application in C for time tracking. (My first, just a learning project)
Log | Files | Refs | README

commit d161a49c751b7ba37c7d552d111b7b19998054cf
parent 72c78cdffe5c608e61c0da4dff6675640854a645
Author: Jacob R. Edwards <jacob@jacobedwards.org>
Date:   Tue, 26 Mar 2024 19:58:08 -0700

Fix use of undefined function tk_endpage

This was a potential change I was going to commit, but reverted as
I was commiting the tk_prompt_login change. Evidently I messed up.
(I make too many of these mistakes, I know.)

Diffstat:
Mpages/common.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pages/common.c b/pages/common.c @@ -125,7 +125,7 @@ tk_errorpage(struct pagedata *pd, enum khttp code) (status = khtml_printf(&pd->html, "%s", khttps[code])) != KCGI_OK || (status = khtml_closeelem(&pd->html, 1)) != KCGI_OK) return status; - return tk_endpage(pd, &template); + return endpage(pd, &template); } enum kcgi_err