From 04f62b4bdbda409b11d9575f3736b8bc553bc95c Mon Sep 17 00:00:00 2001 From: Praveen Kumar D Date: Sat, 13 May 2023 00:16:34 +0530 Subject: [PATCH] space for function arguments --- src/mod/endpoints/mod_sofia/test/sipp-based-tests.c | 1 + src/switch_rtp.c | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/mod/endpoints/mod_sofia/test/sipp-based-tests.c b/src/mod/endpoints/mod_sofia/test/sipp-based-tests.c index 3ed8f763e8..60a7b61a3a 100644 --- a/src/mod/endpoints/mod_sofia/test/sipp-based-tests.c +++ b/src/mod/endpoints/mod_sofia/test/sipp-based-tests.c @@ -1,3 +1,4 @@ + /* * FreeSWITCH Modular Media Switching Software Library / Soft-Switch Application * Copyright (C) 2005-2021, Anthony Minessale II diff --git a/src/switch_rtp.c b/src/switch_rtp.c index 0516581f93..13c6beb9f3 100644 --- a/src/switch_rtp.c +++ b/src/switch_rtp.c @@ -3079,7 +3079,7 @@ static int dtls_state_setup(switch_rtp_t *rtp_session, switch_dtls_t *dtls) fp.type = dtls->remote_fp->type; 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); } @@ -3279,7 +3279,7 @@ static int cb_verify_peer(int preverify_ok, X509_STORE_CTX *ctx) fp.type = dtls->remote_fp->type; 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); } else {