瀏覽代碼

Add a missing comma in tor_check_port_forwarding

My fault; fix for bug 4213.
Nick Mathewson 12 年之前
父節點
當前提交
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