Skip to content

Commit

Permalink
Merge pull request #402 from zowe/struga0258-patch-2
Browse files Browse the repository at this point in the history
Replace ":" with ";" in httpserver.c
  • Loading branch information
JoeNemo authored Sep 6, 2023
2 parents 2cd076a + 03f2ee1 commit 45b2865
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion c/httpserver.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 45b2865

Please sign in to comment.