summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Hauke <mardnh@gmx.de>2021-01-01 22:17:15 +0100
committerAndreas Eversberg <jolly@eversberg.eu>2021-01-03 10:12:01 +0100
commit345d953ab69ca73906cfe52e3e76c56bbb245ef1 (patch)
treeb1d8c269d6d633cc3644cfdf31ecb5e7653d0462
parentcc13b6f3210c4cfe296c87024ab89987176b0101 (diff)
Fix typos
-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;
}