summaryrefslogtreecommitdiff
path: root/res/res_pjsip_outbound_authenticator_digest.c
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2017-01-01 03:47:50 -0600
committerRichard Mudgett <rmudgett@digium.com>2017-01-20 07:22:13 -0600
commit48730ae65eefdf844d61ee611d3f2a1d42af807b (patch)
tree67b4f5cd464bd9ee66b53fc59bd008b1c29de113 /res/res_pjsip_outbound_authenticator_digest.c
parentfb02cc5a8bae22f2eca4f60d84550b30a19d723a (diff)
res_pjsip_outbound_authenticator_digest.c: Fix spacing in warning messages.
Change-Id: I573f0343c0c63a785cd4da60d57cc9f8b9ce7f49
Diffstat (limited to 'res/res_pjsip_outbound_authenticator_digest.c')
-rw-r--r--res/res_pjsip_outbound_authenticator_digest.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/res/res_pjsip_outbound_authenticator_digest.c b/res/res_pjsip_outbound_authenticator_digest.c
index ce77c3bad..4bbac342f 100644
--- a/res/res_pjsip_outbound_authenticator_digest.c
+++ b/res/res_pjsip_outbound_authenticator_digest.c
@@ -141,18 +141,18 @@ static int digest_create_request_with_auth(const struct ast_sip_auth_vector *aut
++cseq->cseq;
return 0;
case PJSIP_ENOCREDENTIAL:
- ast_log(LOG_WARNING, "Unable to create request with auth."
- "No auth credentials for any realms in challenge.\n");
+ ast_log(LOG_WARNING,
+ "Unable to create request with auth. No auth credentials for any realms in challenge.\n");
break;
case PJSIP_EAUTHSTALECOUNT:
- ast_log(LOG_WARNING, "Unable to create request with auth."
- "Number of stale retries exceeded\n");
+ ast_log(LOG_WARNING,
+ "Unable to create request with auth. Number of stale retries exceeded.\n");
break;
case PJSIP_EFAILEDCREDENTIAL:
- ast_log(LOG_WARNING, "Authentication credentials not accepted by server\n");
+ ast_log(LOG_WARNING, "Authentication credentials not accepted by server.\n");
break;
default:
- ast_log(LOG_WARNING, "Unable to create request with auth. Unknown failure\n");
+ ast_log(LOG_WARNING, "Unable to create request with auth. Unknown failure.\n");
break;
}