[tor-commits] [tor/master] Add a missing comma in tor_check_port_forwarding

nickm at torproject.org nickm at torproject.org
Mon Oct 10 15:40:47 UTC 2011


commit 6a673ad31387928e4309b72204292000a3cd3b83
Author: Nick Mathewson <nickm at torproject.org>
Date:   Mon Oct 10 11:42:05 2011 -0400

    Add a missing comma in tor_check_port_forwarding
    
    My fault; fix for bug 4213.
---
 src/common/util.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/common/util.c b/src/common/util.c
index a3716e4..9df7a50 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



More information about the tor-commits mailing list