# HG changeset patch # User Matti Hamalainen # Date 1380481648 -10800 # Node ID 2a6b512ee5a1718cd2ef170a6ac9b9539e7af34c # Parent cdb348e051b5e3d84662b166cda8f3be36685c1c Proxy port commandline option was not working correctly (set wrong variable), fixed. diff -r cdb348e051b5 -r 2a6b512ee5a1 main.c --- a/main.c Fri Jul 26 15:45:05 2013 +0300 +++ b/main.c Sun Sep 29 22:07:28 2013 +0300 @@ -175,7 +175,7 @@ break; case 12: - optPort = atoi(optArg); + optProxyPort = atoi(optArg); break;