[svn-commits] rmudgett: branch group/CCSS r244051 - /team/group/CCSS/channels/chan_dahdi.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Fri Jan 29 16:20:35 CST 2010


Author: rmudgett
Date: Fri Jan 29 16:20:30 2010
New Revision: 244051

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=244051
Log:
Change some ISDN dialstring warning messages.

Modified:
    team/group/CCSS/channels/chan_dahdi.c

Modified: team/group/CCSS/channels/chan_dahdi.c
URL: http://svnview.digium.com/svn/asterisk/team/group/CCSS/channels/chan_dahdi.c?view=diff&rev=244051&r1=244050&r2=244051
==============================================================================
--- team/group/CCSS/channels/chan_dahdi.c (original)
+++ team/group/CCSS/channels/chan_dahdi.c Fri Jan 29 16:20:30 2010
@@ -12257,7 +12257,7 @@
 		/* Extract the ISDN span channel restriction specifier. */
 		res = sscanf(args.group + 1, "%30d", &x);
 		if (res < 1) {
-			ast_log(LOG_WARNING, "Unable to determine ISDN span %s\n", data);
+			ast_log(LOG_WARNING, "Unable to determine ISDN span for data %s\n", data);
 			return NULL;
 		}
 		param->span = x;
@@ -12265,7 +12265,7 @@
 		/* Remove the ISDN span channel restriction specifier. */
 		s = strchr(args.group, '-');
 		if (!s) {
-			ast_log(LOG_WARNING, "Bad format for ISDN span %s\n", data);
+			ast_log(LOG_WARNING, "Bad ISDN span format for data %s\n", data);
 			return NULL;
 		}
 		args.group = s + 1;




More information about the svn-commits mailing list