Add a missing comma in tor_check_port_forwarding

My fault; fix for bug 4213.
This commit is contained in:
Nick Mathewson 2011-10-10 11:42:05 -04:00
parent 19f1d3e331
commit 6a673ad313

View 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