Skip to content

Commit 9b1a0c8

Browse files
authored
Merge pull request #122 from oracle/cel-fixes
tlshd: Kernel should not parse incoming client certificates
2 parents 3f91990 + efeda80 commit 9b1a0c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tlshd/server.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ static int tlshd_server_x509_verify_function(gnutls_session_t session,
287287
gnutls_x509_crt_deinit(cert);
288288
return GNUTLS_E_CERTIFICATE_ERROR;
289289
}
290-
peerid = tlshd_keyring_create_cert(cert, parms->peername);
290+
peerid = UINT_MAX;
291291
g_array_append_val(parms->remote_peerids, peerid);
292292
gnutls_x509_crt_deinit(cert);
293293
}

0 commit comments

Comments
 (0)