summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS4
-rw-r--r--plugins-root/check_dhcp.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index b094470..9462d7a 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,9 @@
1This file documents the major additions and syntax changes between releases. 1This file documents the major additions and syntax changes between releases.
2 2
32.3 [...]
4 FIXES
5 Fix regression where check_dhcp was rereading response in a tight loop
6
32.2 29th November 2016 72.2 29th November 2016
4 ENHANCEMENTS 8 ENHANCEMENTS
5 The check_http -S/--ssl option now accepts the arguments "1.1" and "1.2" 9 The check_http -S/--ssl option now accepts the arguments "1.1" and "1.2"
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