[svn-commits] eliel: branch 1.6.2 r200842 - in /branches/1.6.2: ./ res/res_smdi.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Jun 16 07:55:59 CDT 2009


Author: eliel
Date: Tue Jun 16 07:55:55 2009
New Revision: 200842

URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=200842
Log:
Merged revisions 200841 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

........
  r200841 | eliel | 2009-06-16 08:32:00 -0400 (Tue, 16 Jun 2009) | 6 lines
  
  Show the interface name on error, if it is not found.
  
  If the smdiport specified is not found, show the interface name
  instead of '(null)'.
........

Modified:
    branches/1.6.2/   (props changed)
    branches/1.6.2/res/res_smdi.c

Propchange: branches/1.6.2/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.2/res/res_smdi.c
URL: http://svn.asterisk.org/svn-view/asterisk/branches/1.6.2/res/res_smdi.c?view=diff&rev=200842&r1=200841&r2=200842
==============================================================================
--- branches/1.6.2/res/res_smdi.c (original)
+++ branches/1.6.2/res/res_smdi.c Tue Jun 16 07:55:55 2009
@@ -1044,7 +1044,7 @@
 				ASTOBJ_UNREF(iface, ast_smdi_interface_destroy);
 
 			if (!(iface = ASTOBJ_CONTAINER_FIND(&smdi_ifaces, v->value))) {
-				ast_log(LOG_NOTICE, "SMDI interface %s not found\n", iface->name);
+				ast_log(LOG_NOTICE, "SMDI interface %s not found\n", v->value);
 				continue;
 			}
 		} else if (!strcasecmp(v->name, "pollinginterval")) {




More information about the svn-commits mailing list