From 03f2ee1aa6816ca3fc73e0a986717198ec60517d Mon Sep 17 00:00:00 2001 From: James Struga Date: Wed, 6 Sep 2023 10:13:49 -0400 Subject: [PATCH] Replace ":" with ";" in httpserver.c Signed-off-by: James Struga --- c/httpserver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c/httpserver.c b/c/httpserver.c index d057255d1..109666951 100644 --- a/c/httpserver.c +++ b/c/httpserver.c @@ -3178,7 +3178,7 @@ static int serviceAuthNativeWithSessionToken(HttpService *service, HttpRequest * #define TLS_CLIENT_CERTIFICATE_MAX_LENGTH 65536 - char *userid = NULL: /* allocate on slh so we have for duration of request and response. */ + char *userid = NULL; /* allocate on slh so we have for duration of request and response. */ char *clientCertificate = safeMalloc(TLS_CLIENT_CERTIFICATE_MAX_LENGTH, "Client Certificate"); unsigned int clientCertificateLength = 0;