소스 검색

Add a missing comma in tor_check_port_forwarding

My fault; fix for bug 4213.
Nick Mathewson 14 년 전
부모
커밋
6a673ad313
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/common/util.c

+ 1 - 1
src/common/util.c

@@ -3977,7 +3977,7 @@ tor_check_port_forwarding(const char *filename, int dir_port, int or_port,
 
 #ifdef MS_WINDOWS
     /* Passing NULL as lpApplicationName makes Windows search for the .exe */
-    tor_spawn_background(NULL, argv, NULL &child_handle);
+    tor_spawn_background(NULL, argv, NULL, &child_handle);
 #else
     tor_spawn_background(filename, argv, NULL, &child_handle);
 #endif