This website works better with JavaScript
Home
Esplora
Aiuto
Accedi
LBP
/
nagios-plugins
mirror da
https://github.com/nagios-plugins/nagios-plugins.git
Segui
4
Vota
0
Forka
0
File
Problemi
0
Wiki
Sfoglia il codice sorgente
Fixes segfaults when running via monitoring worker
(off-by-one)
Grabed from https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198318
Jan Wagner
11 anni fa
parent
92f3b63b01
commit
5d2b502dd5
1 ha cambiato i file
con
1 aggiunte
e
1 eliminazioni
Visualizzazione separata
Mostra Diff Stats
1
1
plugins-root/check_dhcp.c
+ 1
- 1
plugins-root/check_dhcp.c
Vedi File
@@ -1194,7 +1194,7 @@ int call_getopt(int argc, char **argv){
}
}
- return i;
+ return i
+1
;
}