diff options
author | Harald Koch <chk@anemone.chk.cfrq.net> | 2016-12-07 18:11:40 (GMT) |
---|---|---|
committer | Harald Koch <chk@anemone.chk.cfrq.net> | 2016-12-07 18:11:40 (GMT) |
commit | 9dd09ec3318bc1a31ce69a92bdcad342654f18d5 (patch) | |
tree | 6bd2b2462564926006af425badfab61eb9fd87a5 /plugins-root/check_dhcp.c | |
parent | bc4842ab7d0a378a98ee6d37e42bb928c51f9e41 (diff) | |
download | monitoring-plugins-9dd09ec3318bc1a31ce69a92bdcad342654f18d5.tar.gz |
properly remove MSG_PEEK in check_dhcp.c. Fixes #1450.refs/pull/1454/head
Diffstat (limited to 'plugins-root/check_dhcp.c')
-rw-r--r-- | plugins-root/check_dhcp.c | 2 |
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 | ||