timekeeper

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

commit bde9727da6da059fc330e3ee0ae9fe665edd1c34
parent b2af7f344f3c14d899cbfe838b954250518de217
Author: Jacob R. Edwards <jacob@jacobedwards.org>
Date:   Sun, 31 Mar 2024 18:34:38 -0700

Remove outdated comment

Diffstat:
Mstmt.c | 7-------
1 file changed, 0 insertions(+), 7 deletions(-)

diff --git a/stmt.c b/stmt.c @@ -82,13 +82,6 @@ struct sqlbox_pstmt pstmts[] = { [StmtRevokeAuthTokens] = { .stmt = "DELETE FROM authtokens WHERE userid IS ?" }, - - /* - * Currently, the user can set the end time with a - * break open and the break won't be ended. This is - * intentional, but also it should set the break end - * time to the end time in that case. - */ [StmtStartTime] = { .stmt = "INSERT OR IGNORE INTO times (userid, entry, start)\n" " SELECT ?, IFNULL(max(entry) + 1, 1), ? FROM times\n"