diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2009-09-03 15:53:33 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2009-09-03 15:53:33 +0200 |
commit | cbdc18da79c2ee672ef59e443a9c0039fdf87bc1 (patch) | |
tree | dfd7e3c8e13a5f2547c670cec5c7401995f364e4 /plugins/imudp/imudp.c | |
parent | eeaeafb87b79844eb49907653a355c0e53fee53b (diff) | |
parent | 44083dda02f004df3e3552eb00a145fe6e0733af (diff) | |
download | rsyslog-cbdc18da79c2ee672ef59e443a9c0039fdf87bc1.tar.gz rsyslog-cbdc18da79c2ee672ef59e443a9c0039fdf87bc1.tar.bz2 rsyslog-cbdc18da79c2ee672ef59e443a9c0039fdf87bc1.zip |
Merge branch 'beta'
Diffstat (limited to 'plugins/imudp/imudp.c')
-rw-r--r-- | plugins/imudp/imudp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/imudp/imudp.c b/plugins/imudp/imudp.c index ea41e4f6..0a8920f5 100644 --- a/plugins/imudp/imudp.c +++ b/plugins/imudp/imudp.c @@ -210,7 +210,7 @@ processSocket(int fd, struct sockaddr_storage *frominetPrev, int *pbIsPermitted, /* if we reach this point, we had a good receive and can process the packet received */ /* check if we have a different sender than before, if so, we need to query some new values */ - if(memcmp(&frominet, frominetPrev, socklen) != 0) { + if(net.CmpHost(&frominet, frominetPrev, socklen) != 0) { CHKiRet(net.cvthname(&frominet, fromHost, fromHostFQDN, fromHostIP)); memcpy(frominetPrev, &frominet, socklen); /* update cache indicator */ /* Here we check if a host is permitted to send us |