From: Nick Mathewson Date: Mon, 10 Oct 2011 15:42:05 +0000 (-0400) Subject: Add a missing comma in tor_check_port_forwarding X-Git-Tag: tor-0.2.3.6-alpha~34 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6a673ad31387928e4309b72204292000a3cd3b83;p=thirdparty%2Ftor.git Add a missing comma in tor_check_port_forwarding My fault; fix for bug 4213. --- diff --git a/src/common/util.c b/src/common/util.c index a3716e4345..9df7a5031f 100644 --- a/src/common/util.c +++ b/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