]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
res_pjsip_outbound_authenticator_digest.c: Fix spacing in warning messages. 31/4731/1
authorRichard Mudgett <rmudgett@digium.com>
Sun, 1 Jan 2017 09:47:50 +0000 (03:47 -0600)
committerRichard Mudgett <rmudgett@digium.com>
Fri, 20 Jan 2017 13:21:58 +0000 (07:21 -0600)
Change-Id: I573f0343c0c63a785cd4da60d57cc9f8b9ce7f49

res/res_pjsip_outbound_authenticator_digest.c

index ce77c3bad158ec9f1f28256412243307ba20a70f..4bbac342f53c70e6bf0f946c9e9e21adc2aaff85 100644 (file)
@@ -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;
        }