summaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2011-04-15 10:06:33 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2011-04-15 10:06:33 +0200
commit526e7d0d3fd12c255a51e2ac74df8fbf56abc31b (patch)
tree13893e11938b06aab7387b6d90b1e92aa855c44e /plugins
parentf31e2b3b66b6ed21c96cfe3526c9c8b4aee309ed (diff)
parente7deab65dcad38a613c749e44e36c6c795000867 (diff)
downloadrsyslog-526e7d0d3fd12c255a51e2ac74df8fbf56abc31b.tar.gz
rsyslog-526e7d0d3fd12c255a51e2ac74df8fbf56abc31b.tar.xz
rsyslog-526e7d0d3fd12c255a51e2ac74df8fbf56abc31b.zip
Merge branch 'v4-stable' into v5-stable
Diffstat (limited to 'plugins')
-rw-r--r--plugins/omrelp/omrelp.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/plugins/omrelp/omrelp.c b/plugins/omrelp/omrelp.c
index cf70381f..1453d68f 100644
--- a/plugins/omrelp/omrelp.c
+++ b/plugins/omrelp/omrelp.c
@@ -251,8 +251,18 @@ CODE_STD_STRING_REQUESTparseSelectorAct(1)
/* extract the host first (we do a trick - we replace the ';' or ':' with a '\0')
* now skip to port and then template name. rgerhards 2005-07-06
*/
- for(q = p ; *p && *p != ';' && *p != ':' ; ++p)
- /* JUST SKIP */;
+ if(*p == '[') { /* everything is hostname upto ']' */
+ ++p; /* skip '[' */
+ for(q = p ; *p && *p != ']' ; ++p)
+ /* JUST SKIP */;
+ if(*p == ']') {
+ *p = '\0'; /* trick to obtain hostname (later)! */
+ ++p; /* eat it */
+ }
+ } else { /* traditional view of hostname */
+ for(q = p ; *p && *p != ';' && *p != ':' && *p != '#' ; ++p)
+ /* JUST SKIP */;
+ }
pData->port = NULL;
if(*p == ':') { /* process port */