mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-05-28 04:35:40 -04:00
check_dig: Linter fixes
This commit is contained in:
parent
f0d7803842
commit
acb19fe8f7
1 changed files with 3 additions and 3 deletions
|
|
@ -65,7 +65,8 @@ static struct timeval tv;
|
|||
|
||||
int main(int argc, char **argv) {
|
||||
char *command_line;
|
||||
output chld_out, chld_err;
|
||||
output chld_out;
|
||||
output chld_err;
|
||||
char *msg = NULL;
|
||||
size_t i;
|
||||
char *t;
|
||||
|
|
@ -293,8 +294,7 @@ int process_arguments(int argc, char **argv) {
|
|||
int validate_arguments(void) {
|
||||
if (query_address != NULL)
|
||||
return OK;
|
||||
else
|
||||
return ERROR;
|
||||
return ERROR;
|
||||
}
|
||||
|
||||
void print_help(void) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue