[asterisk-commits] res pjsip outbound authenticator digest.c: Fix spacing in wa... (asterisk[14])

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Fri Jan 20 11:10:14 CST 2017


Joshua Colp has submitted this change and it was merged. ( https://gerrit.asterisk.org/4731 )

Change subject: res_pjsip_outbound_authenticator_digest.c: Fix spacing in warning messages.
......................................................................


res_pjsip_outbound_authenticator_digest.c: Fix spacing in warning messages.

Change-Id: I573f0343c0c63a785cd4da60d57cc9f8b9ce7f49
---
M res/res_pjsip_outbound_authenticator_digest.c
1 file changed, 6 insertions(+), 6 deletions(-)

Approvals:
  George Joseph: Looks good to me, but someone else must approve
  Anonymous Coward #1000019: Verified
  Joshua Colp: Looks good to me, approved



diff --git a/res/res_pjsip_outbound_authenticator_digest.c b/res/res_pjsip_outbound_authenticator_digest.c
index ce77c3b..4bbac34 100644
--- a/res/res_pjsip_outbound_authenticator_digest.c
+++ b/res/res_pjsip_outbound_authenticator_digest.c
@@ -141,18 +141,18 @@
 		++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;
 	}
 

-- 
To view, visit https://gerrit.asterisk.org/4731
To unsubscribe, visit https://gerrit.asterisk.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I573f0343c0c63a785cd4da60d57cc9f8b9ce7f49
Gerrit-PatchSet: 1
Gerrit-Project: asterisk
Gerrit-Branch: 14
Gerrit-Owner: Richard Mudgett <rmudgett at digium.com>
Gerrit-Reviewer: Anonymous Coward #1000019
Gerrit-Reviewer: George Joseph <gjoseph at digium.com>
Gerrit-Reviewer: Joshua Colp <jcolp at digium.com>



More information about the asterisk-commits mailing list