diff options
author | Michael Biebl <biebl@debian.org> | 2011-07-11 11:44:16 +0200 |
---|---|---|
committer | Michael Biebl <biebl@debian.org> | 2011-07-11 11:44:16 +0200 |
commit | 6b2af45bc8b2aa4292e3cf92986c01a728ef4d8c (patch) | |
tree | 15c4d4604294a232bf1126f969318ed659b2dc52 /tools/omusrmsg.c | |
parent | d5294b644649f563f4aa77735ebc6db6ee1776de (diff) | |
download | rsyslog-6b2af45bc8b2aa4292e3cf92986c01a728ef4d8c.tar.gz |
Imported Upstream version 5.8.3upstream/5.8.3
Diffstat (limited to 'tools/omusrmsg.c')
-rw-r--r-- | tools/omusrmsg.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/omusrmsg.c b/tools/omusrmsg.c index 2d99c1e..c737454 100644 --- a/tools/omusrmsg.c +++ b/tools/omusrmsg.c @@ -279,7 +279,9 @@ CODE_STD_STRING_REQUESTparseSelectorAct(1) * [a-zA-Z0-9_.] * plus '*' for wall */ - if(!*p || !((*p >= 'a' && *p <= 'z') || (*p >= 'A' && *p <= 'Z') + if(!strncmp((char*) p, ":omusrmsg:", sizeof(":omusrmsg:") - 1)) { + p += sizeof(":omusrmsg:") - 1; /* eat indicator sequence (-1 because of '\0'!) */ + } else if(!*p || !((*p >= 'a' && *p <= 'z') || (*p >= 'A' && *p <= 'Z') || (*p >= '0' && *p <= '9') || *p == '_' || *p == '.' || *p == '*')) ABORT_FINALIZE(RS_RET_CONFLINE_UNPROCESSED); |