This website works better with JavaScript
Inicio
Explorar
Ayuda
Iniciar sesión
LBP
/
nagios-plugins
espejo de
https://github.com/nagios-plugins/nagios-plugins.git
Seguir
4
Destacar
0
Fork
0
Archivos
Incidencias
0
Wiki
Explorar el Código
Fixes segfaults when running via monitoring worker
(off-by-one)
Grabed from https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198318
Jan Wagner
hace 11 años
padre
92f3b63b01
commit
5d2b502dd5
Se han
modificado 1 ficheros
con
1 adiciones
y
1 borrados
Dividir vista
Mostrar estadísticas de diff
1
1
plugins-root/check_dhcp.c
+ 1
- 1
plugins-root/check_dhcp.c
Ver fichero
@@ -1194,7 +1194,7 @@ int call_getopt(int argc, char **argv){
}
}
- return i;
+ return i
+1
;
}