diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2013-10-04 08:27:27 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2013-10-04 08:27:27 +0200 |
commit | a67ef0dee98b117571e5b1d861ecb572db53186a (patch) | |
tree | 909663aaf64c1ef3e033fd58ca2f2dc73ce10122 /plugins | |
parent | 9b273d1930cc6ccaada911d77db4c47e019119d2 (diff) | |
parent | f86d32638d6f7120608d9beeb25b4bb3be9ab5c2 (diff) | |
download | rsyslog-a67ef0dee98b117571e5b1d861ecb572db53186a.tar.gz rsyslog-a67ef0dee98b117571e5b1d861ecb572db53186a.tar.bz2 rsyslog-a67ef0dee98b117571e5b1d861ecb572db53186a.zip |
Merge branch 'v7-stable'
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mmanon/mmanon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mmanon/mmanon.c b/plugins/mmanon/mmanon.c index a1c99d09..7d8f9964 100644 --- a/plugins/mmanon/mmanon.c +++ b/plugins/mmanon/mmanon.c @@ -307,7 +307,7 @@ anonip(instanceData *pData, uchar *msg, int *pLenMsg, int *idx) ++i; ipstart[3] = i; octet = getnum(msg, lenMsg, &i); - if(octet > 255 || !(msg[i] == ' ' || msg[i] == ':')) goto done; + if(octet > 255) goto done; ipv4addr |= octet; /* OK, we now found an ip address */ |