diff options
Diffstat (limited to 'plugins-root/t')
0 files changed, 0 insertions, 0 deletions
diff --git a/plugins-root/check_dhcp.c b/plugins-root/check_dhcp.c index ee794b4..5ba9372 100644 --- a/plugins-root/check_dhcp.c +++ b/plugins-root/check_dhcp.c | |||
@@ -193,8 +193,8 @@ typedef struct requested_server_struct{ | |||
193 | #define ETHERNET_HARDWARE_ADDRESS 1 /* used in htype field of dhcp packet */ | 193 | #define ETHERNET_HARDWARE_ADDRESS 1 /* used in htype field of dhcp packet */ |
194 | #define ETHERNET_HARDWARE_ADDRESS_LENGTH 6 /* length of Ethernet hardware addresses */ | 194 | #define ETHERNET_HARDWARE_ADDRESS_LENGTH 6 /* length of Ethernet hardware addresses */ |
195 | 195 | ||
196 | bool unicast = 0; /* unicast mode: mimic a DHCP relay */ | 196 | bool unicast = false; /* unicast mode: mimic a DHCP relay */ |
197 | bool exclusive = 0; /* exclusive mode aka "rogue DHCP server detection" */ | 197 | bool exclusive = false; /* exclusive mode aka "rogue DHCP server detection" */ |
198 | struct in_addr my_ip; /* our address (required for relay) */ | 198 | struct in_addr my_ip; /* our address (required for relay) */ |
199 | struct in_addr dhcp_ip; /* server to query (if in unicast mode) */ | 199 | struct in_addr dhcp_ip; /* server to query (if in unicast mode) */ |
200 | unsigned char client_hardware_address[MAX_DHCP_CHADDR_LENGTH]=""; | 200 | unsigned char client_hardware_address[MAX_DHCP_CHADDR_LENGTH]=""; |
@@ -1094,7 +1094,7 @@ int call_getopt(int argc, char **argv){ | |||
1094 | }; | 1094 | }; |
1095 | 1095 | ||
1096 | int c=0; | 1096 | int c=0; |
1097 | while(1){ | 1097 | while(true){ |
1098 | c=getopt_long(argc,argv,"+hVvxt:s:r:t:i:m:u",long_options,&option_index); | 1098 | c=getopt_long(argc,argv,"+hVvxt:s:r:t:i:m:u",long_options,&option_index); |
1099 | 1099 | ||
1100 | if(c==-1||c==EOF||c==1) | 1100 | if(c==-1||c==EOF||c==1) |