space for function arguments

This commit is contained in:
Praveen Kumar D 2023-05-13 00:16:34 +05:30
parent b4cbe4a387
commit 04f62b4bdb
2 changed files with 3 additions and 2 deletions

View File

@ -1,3 +1,4 @@
/* /*
* FreeSWITCH Modular Media Switching Software Library / Soft-Switch Application * FreeSWITCH Modular Media Switching Software Library / Soft-Switch Application
* Copyright (C) 2005-2021, Anthony Minessale II <anthm@freeswitch.org> * Copyright (C) 2005-2021, Anthony Minessale II <anthm@freeswitch.org>

View File

@ -3079,7 +3079,7 @@ static int dtls_state_setup(switch_rtp_t *rtp_session, switch_dtls_t *dtls)
fp.type = dtls->remote_fp->type; fp.type = dtls->remote_fp->type;
switch_core_cert_extract_fingerprint(cert, &fp); switch_core_cert_extract_fingerprint(cert, &fp);
r = !memcmp(fp.str,dtls->remote_fp->str,MAX_FPLEN); r = !memcmp(fp.str, dtls->remote_fp->str, MAX_FPLEN);
X509_free(cert); X509_free(cert);
} }
@ -3279,7 +3279,7 @@ static int cb_verify_peer(int preverify_ok, X509_STORE_CTX *ctx)
fp.type = dtls->remote_fp->type; fp.type = dtls->remote_fp->type;
switch_core_cert_extract_fingerprint(cert, &fp); switch_core_cert_extract_fingerprint(cert, &fp);
r = !memcmp(fp.str,dtls->remote_fp->str,MAX_FPLEN); r = !memcmp(fp.str, dtls->remote_fp->str, MAX_FPLEN);
X509_free(cert); X509_free(cert);
} else { } else {