From 5b2b87e086135ec35b24f67922e582480cb7a834 Mon Sep 17 00:00:00 2001 From: Chip Black Date: Wed, 30 Jul 2014 23:43:48 -0500 Subject: [PATCH 1/1] Expire auth cookie on logout --- cgi/cgi_blerg.c | 1 + 1 file changed, 1 insertion(+) diff --git a/cgi/cgi_blerg.c b/cgi/cgi_blerg.c index 9df908b..8f502a2 100644 --- a/cgi/cgi_blerg.c +++ b/cgi/cgi_blerg.c @@ -341,6 +341,7 @@ int main(int argc, char *argv[]) { exit(0); auth_logout(ac.name, ac.token); + printf("Set-Cookie: auth=X; Expires=Thu, 01 Jan 1970 00:00:00 GMT\r\n"); respond_JSON_Success(); } else if (strncmp(path, "/subscribe", 10) == 0) { if (!check_auth(&ac)) -- 2.25.1