summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Koch <chk@anemone.chk.cfrq.net>2016-12-07 18:11:40 (GMT)
committerHarald Koch <chk@anemone.chk.cfrq.net>2016-12-07 18:11:40 (GMT)
commit9dd09ec3318bc1a31ce69a92bdcad342654f18d5 (patch)
tree6bd2b2462564926006af425badfab61eb9fd87a5
parentbc4842ab7d0a378a98ee6d37e42bb928c51f9e41 (diff)
downloadmonitoring-plugins-9dd09ec.tar.gz
properly remove MSG_PEEK in check_dhcp.c. Fixes #1450.refs/pull/1454/head
-rw-r--r--plugins-root/check_dhcp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins-root/check_dhcp.c b/plugins-root/check_dhcp.c
index 88b7ca1..f4c2daf 100644
--- a/plugins-root/check_dhcp.c
+++ b/plugins-root/check_dhcp.c
@@ -693,7 +693,7 @@ int receive_dhcp_packet(void *buffer, int buffer_size, int sock, int timeout, st
693 else{ 693 else{
694 bzero(&source_address,sizeof(source_address)); 694 bzero(&source_address,sizeof(source_address));
695 address_size=sizeof(source_address); 695 address_size=sizeof(source_address);
696 recv_result=recvfrom(sock,(char *)buffer,buffer_size,MSG_PEEK,(struct sockaddr *)&source_address,&address_size); 696 recv_result=recvfrom(sock,(char *)buffer,buffer_size,0,(struct sockaddr *)&source_address,&address_size);
697 if(verbose) 697 if(verbose)
698 printf("recv_result: %d\n",recv_result); 698 printf("recv_result: %d\n",recv_result);
699 699