[svn-commits] kpfleming: trunk r264497 - /trunk/main/logger.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu May 20 07:06:16 CDT 2010


Author: kpfleming
Date: Thu May 20 07:06:11 2010
New Revision: 264497

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=264497
Log:
Correct 'all logger levels' patch to work properly.

Nick Lewis pointed out that the patch as committed wouldn't actually include
dynamic logger levels, which was missed by the other reviewers. Thanks!


Modified:
    trunk/main/logger.c

Modified: trunk/main/logger.c
URL: http://svnview.digium.com/svn/asterisk/trunk/main/logger.c?view=diff&rev=264497&r1=264496&r2=264497
==============================================================================
--- trunk/main/logger.c (original)
+++ trunk/main/logger.c Thu May 20 07:06:11 2010
@@ -217,7 +217,7 @@
 		w = ast_skip_blanks(w);
 
 		if (!strcmp(w, "*")) {
-			res = 0xFFFF;
+			res = 0xFFFFFFFF;
 			break;
 		} else for (x = 0; x < ARRAY_LEN(levels); x++) {
 			if (levels[x] && !strcasecmp(w, levels[x])) {




More information about the svn-commits mailing list