From 2aa0c11679fde5a7598958700db9b3584721dd0e Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Thu, 20 May 2010 12:06:11 +0000 Subject: [PATCH] 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! git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@264497 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/logger.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/logger.c b/main/logger.c index 3b66854a15..698e782ebf 100644 --- a/main/logger.c +++ b/main/logger.c @@ -217,7 +217,7 @@ static unsigned int make_components(const char *s, int lineno) 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])) { -- 2.47.2