Expire auth cookie on logout
authorChip Black <bytex64@bytex64.net>
Thu, 31 Jul 2014 04:43:48 +0000 (23:43 -0500)
committerChip Black <bytex64@bytex64.net>
Thu, 31 Jul 2014 04:52:27 +0000 (23:52 -0500)
cgi/cgi_blerg.c

index 9df908b..8f502a2 100644 (file)
@@ -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))