summaryrefslogtreecommitdiff
path: root/main/logger.c
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2010-05-20 12:06:11 +0000
committerKevin P. Fleming <kpfleming@digium.com>2010-05-20 12:06:11 +0000
commit2aa0c11679fde5a7598958700db9b3584721dd0e (patch)
treeb627c98194eb4621f52a2de2344bcee85998ae75 /main/logger.c
parent6bb45831ebae7a9a9f87b927b9baa7fc482fb4c9 (diff)
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
Diffstat (limited to 'main/logger.c')
-rw-r--r--main/logger.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/logger.c b/main/logger.c
index 3b66854a1..698e782eb 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])) {