summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2013-07-08 21:27:18 +0000
committerJoshua Colp <jcolp@digium.com>2013-07-08 21:27:18 +0000
commit6670f56027c5970f0164565d48e5e1ba31a06fa5 (patch)
tree4f8ece44453d4e48c18a3ef3fe05c914b2ae7305
parent0f7d4d308e383d9f52e4db66ae619413bda344da (diff)
Tweak log message slightly.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@393858 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--res/res_sip/config_auth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/res/res_sip/config_auth.c b/res/res_sip/config_auth.c
index 5f9e8d0b7..836b90805 100644
--- a/res/res_sip/config_auth.c
+++ b/res/res_sip/config_auth.c
@@ -86,8 +86,8 @@ static int auth_apply(const struct ast_sorcery *sorcery, void *obj)
"specified for auth '%s'\n", ast_sorcery_object_get_id(auth));
res = -1;
} else if (strlen(auth->md5_creds) != PJSIP_MD5STRLEN) {
- ast_log(LOG_ERROR, "'md5' authentication requires digest of '%d', but"
- "digest is of '%d' for auth '%s'\n", PJSIP_MD5STRLEN, (int)strlen(auth->md5_creds),
+ ast_log(LOG_ERROR, "'md5' authentication requires digest of size '%d', but"
+ "digest is '%d' in size for auth '%s'\n", PJSIP_MD5STRLEN, (int)strlen(auth->md5_creds),
ast_sorcery_object_get_id(auth));
res = -1;
}