]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Add a missing comma in tor_check_port_forwarding
authorNick Mathewson <nickm@torproject.org>
Mon, 10 Oct 2011 15:42:05 +0000 (11:42 -0400)
committerNick Mathewson <nickm@torproject.org>
Mon, 10 Oct 2011 15:42:05 +0000 (11:42 -0400)
My fault; fix for bug 4213.

src/common/util.c

index a3716e4345ee99572589c6f2db5d159ea6a675ce..9df7a5031f2f43d544cadac72acbbf3c10e7e18c 100644 (file)
@@ -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