ソースを参照

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 年 前
コミット
5d2b502dd5
1 ファイル変更1 行追加1 行削除
  1. 1 1
      plugins-root/check_dhcp.c

+ 1 - 1
plugins-root/check_dhcp.c

@@ -1194,7 +1194,7 @@ int call_getopt(int argc, char **argv){
 		        }
 	        }
 
-	return i;
+	return i+1;
         }