소스 검색

Don't check threshold > load_limit

Serj Kalichev 6 년 전
부모
커밋
dba24e60d0
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      birq.c

+ 2 - 1
birq.c

@@ -110,10 +110,11 @@ int main(int argc, char **argv)
 	}
 
 	/* Validate threshold and load limit */
-	if (opts->load_limit > opts->threshold) {
+/*	if (opts->load_limit > opts->threshold) {
 		fprintf(stderr, "Error: The load limit is greater than threshold.\n");
 		goto err;
 	}
+*/
 
 	/* Initialize syslog */
 	openlog(argv[0], LOG_CONS, opts->log_facility);