[svn-commits] tilghman: trunk r102238 - in /trunk: ./ funcs/func_strings.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Sun Feb 3 23:32:01 CST 2008


Author: tilghman
Date: Sun Feb  3 23:32:00 2008
New Revision: 102238

URL: http://svn.digium.com/view/asterisk?view=rev&rev=102238
Log:
Merged revisions 102214 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r102214 | tilghman | 2008-02-03 23:10:02 -0600 (Sun, 03 Feb 2008) | 6 lines

Missing braces.
(closes issue #11912)
 Reported by: dimas
 Patches: 
       sprintf.patch uploaded by dimas (license 88)

........

Modified:
    trunk/   (props changed)
    trunk/funcs/func_strings.c

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.

Modified: trunk/funcs/func_strings.c
URL: http://svn.digium.com/view/asterisk/trunk/funcs/func_strings.c?view=diff&rev=102238&r1=102237&r2=102238
==============================================================================
--- trunk/funcs/func_strings.c (original)
+++ trunk/funcs/func_strings.c Sun Feb  3 23:32:00 2008
@@ -482,9 +482,10 @@
 					i++;
 				state = SPRINTF_CONVERSION;
 				break;
-			} else if (strchr("Lqjzt", arg.format[i]))
+			} else if (strchr("Lqjzt", arg.format[i])) {
 				state = SPRINTF_CONVERSION;
 				break;
+			}
 			state = SPRINTF_CONVERSION;
 		case SPRINTF_CONVERSION:
 			if (strchr("diouxXc", arg.format[i])) {




More information about the svn-commits mailing list