diff options
| author | waja <waja@users.noreply.github.com> | 2023-07-11 07:34:35 +0200 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-11 07:34:35 +0200 | 
| commit | fa48c3cfe1d0be363d220610640e595430792e9c (patch) | |
| tree | d912e364ee3a963a4fe6879a45ee57bd3d00e6fc /plugins-root/check_dhcp.c | |
| parent | 85c8210e58b1e9fd47d04f2d72145322cbd20353 (diff) | |
| parent | 443f665c6c92c2b67a47cbe37acd7aae1e07de5c (diff) | |
| download | monitoring-plugins-fa48c3c.tar.gz | |
Merge branch 'master' into update-po
Diffstat (limited to 'plugins-root/check_dhcp.c')
| -rw-r--r-- | plugins-root/check_dhcp.c | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/plugins-root/check_dhcp.c b/plugins-root/check_dhcp.c index 147db6b3..2d22619b 100644 --- a/plugins-root/check_dhcp.c +++ b/plugins-root/check_dhcp.c | |||
| @@ -229,7 +229,7 @@ struct in_addr requested_address; | |||
| 229 | 229 | ||
| 230 | int process_arguments(int, char **); | 230 | int process_arguments(int, char **); | 
| 231 | int call_getopt(int, char **); | 231 | int call_getopt(int, char **); | 
| 232 | int validate_arguments(int, int); | 232 | int validate_arguments(int); | 
| 233 | void print_usage(void); | 233 | void print_usage(void); | 
| 234 | void print_help(void); | 234 | void print_help(void); | 
| 235 | 235 | ||
| @@ -1055,8 +1055,8 @@ int process_arguments(int argc, char **argv){ | |||
| 1055 | return ERROR; | 1055 | return ERROR; | 
| 1056 | 1056 | ||
| 1057 | arg_index = call_getopt(argc,argv); | 1057 | arg_index = call_getopt(argc,argv); | 
| 1058 | return validate_arguments(argc,arg_index); | 1058 | return validate_arguments(argc); | 
| 1059 | } | 1059 | } | 
| 1060 | 1060 | ||
| 1061 | 1061 | ||
| 1062 | 1062 | ||
| @@ -1154,13 +1154,13 @@ int call_getopt(int argc, char **argv){ | |||
| 1154 | } | 1154 | } | 
| 1155 | 1155 | ||
| 1156 | 1156 | ||
| 1157 | int validate_arguments(int argc, int arg_index){ | 1157 | int validate_arguments(int argc){ | 
| 1158 | 1158 | ||
| 1159 | if(argc-optind > 0) | 1159 | if(argc - optind > 0) | 
| 1160 | usage(_("Got unexpected non-option argument")); | 1160 | usage(_("Got unexpected non-option argument")); | 
| 1161 | 1161 | ||
| 1162 | return OK; | 1162 | return OK; | 
| 1163 | } | 1163 | } | 
| 1164 | 1164 | ||
| 1165 | 1165 | ||
| 1166 | #if defined(__sun__) || defined(__solaris__) || defined(__hpux__) | 1166 | #if defined(__sun__) || defined(__solaris__) || defined(__hpux__) | 
