From 345d953ab69ca73906cfe52e3e76c56bbb245ef1 Mon Sep 17 00:00:00 2001 From: Martin Hauke Date: Fri, 1 Jan 2021 22:17:15 +0100 Subject: Fix typos --- src/sip/sip.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/sip/sip.c b/src/sip/sip.c index 59cf21f..49ce49c 100644 --- a/src/sip/sip.c +++ b/src/sip/sip.c @@ -309,17 +309,17 @@ static int check_authorization(sip_authorization_t const *authorization, const c } if (!!strcmp(username, check_user)) { - *auth_text = "Authorization Username Missmatch"; + *auth_text = "Authorization Username Mismatch"; ret = 403; goto end; } if (!!strcmp(realm, check_realm)) { - *auth_text = "Authorization Realm Missmatch"; + *auth_text = "Authorization Realm Mismatch"; ret = 403; goto end; } if (!!strcmp(nonce, check_nonce)) { - *auth_text = "Authorization Nonce Missmatch"; + *auth_text = "Authorization Nonce Mismatch"; ret = 403; goto end; } -- cgit v1.2.3