diff options
| -rw-r--r-- | NEWS | 4 | ||||
| -rw-r--r-- | plugins-root/check_dhcp.c | 2 | 
2 files changed, 5 insertions, 1 deletions
| @@ -1,5 +1,9 @@ | |||
| 1 | This file documents the major additions and syntax changes between releases. | 1 | This file documents the major additions and syntax changes between releases. | 
| 2 | 2 | ||
| 3 | 2.3 [...] | ||
| 4 | FIXES | ||
| 5 | Fix regression where check_dhcp was rereading response in a tight loop | ||
| 6 | |||
| 3 | 2.2 29th November 2016 | 7 | 2.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 88b7ca10..f4c2dafd 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 | ||
