[asterisk-commits] file: trunk r393858 - /trunk/res/res_sip/config_auth.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Jul 8 16:27:19 CDT 2013
Author: file
Date: Mon Jul 8 16:27:18 2013
New Revision: 393858
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=393858
Log:
Tweak log message slightly.
Modified:
trunk/res/res_sip/config_auth.c
Modified: trunk/res/res_sip/config_auth.c
URL: http://svnview.digium.com/svn/asterisk/trunk/res/res_sip/config_auth.c?view=diff&rev=393858&r1=393857&r2=393858
==============================================================================
--- trunk/res/res_sip/config_auth.c (original)
+++ trunk/res/res_sip/config_auth.c Mon Jul 8 16:27:18 2013
@@ -86,8 +86,8 @@
"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;
}
More information about the asterisk-commits
mailing list