[svn-commits] kpfleming: branch 1.6.1 r148614 - in /branches/1.6.1: ./ main/translate.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Oct 14 03:08:50 CDT 2008


Author: kpfleming
Date: Tue Oct 14 03:08:40 2008
New Revision: 148614

URL: http://svn.digium.com/view/asterisk?view=rev&rev=148614
Log:
Merged revisions 148612 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

................
  r148612 | kpfleming | 2008-10-14 03:06:45 -0500 (Tue, 14 Oct 2008) | 9 lines
  
  Merged revisions 148611 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.4
  
  ........
    r148611 | kpfleming | 2008-10-14 02:54:41 -0500 (Tue, 14 Oct 2008) | 3 lines
    
    it would be nice if this message printing code had actually been tested before it was committed...
  ........
................

Modified:
    branches/1.6.1/   (props changed)
    branches/1.6.1/main/translate.c

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

Modified: branches/1.6.1/main/translate.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.1/main/translate.c?view=diff&rev=148614&r1=148613&r2=148614
==============================================================================
--- branches/1.6.1/main/translate.c (original)
+++ branches/1.6.1/main/translate.c Tue Oct 14 03:08:40 2008
@@ -503,7 +503,8 @@
 					tr_matrix[x][z].step = tr_matrix[x][y].step;
 					tr_matrix[x][z].cost = newcost;
 					tr_matrix[x][z].multistep = 1;
-					ast_debug(3, "Discovered %d cost path from %s to %s, via %d\n", tr_matrix[x][z].cost, ast_getformatname(x), ast_getformatname(z), y);
+					ast_debug(3, "Discovered %d cost path from %s to %s, via %s\n", tr_matrix[x][z].cost,
+						  ast_getformatname(1 << x), ast_getformatname(1 << z), ast_getformatname(1 << y));
 					changed++;
 				}
 			}




More information about the svn-commits mailing list