mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-06-10 09:10:08 -04:00
Readability fix
This commit is contained in:
parent
08fdd5789c
commit
500f8aec81
1 changed files with 2 additions and 1 deletions
|
|
@ -577,7 +577,8 @@ process_arguments (int argc, char **argv)
|
|||
if ((temp=strchr(optarg,','))!=NULL) {
|
||||
*temp='\0';
|
||||
if (!is_intnonneg (optarg))
|
||||
usage2 (_("Invalid certificate expiration period"), optarg); days_till_exp_warn = atoi(optarg);
|
||||
usage2 (_("Invalid certificate expiration period"), optarg);
|
||||
days_till_exp_warn = atoi (optarg);
|
||||
*temp=',';
|
||||
temp++;
|
||||
if (!is_intnonneg (temp))
|
||||
|
|
|
|||
Loading…
Reference in a new issue