summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/sip/sip.c6
1 files 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;
}