# HG changeset patch # User Matti Hamalainen # Date 1308822836 -10800 # Node ID 461a6befb7c3b379db086b226f41f61208110aaf # Parent bb2bef026a529fb069fdbb49cff2ec3536d03439 Oops, the proxy type was accidentally called "port" in the configuration file, as was the actual port setting. Fixed. diff -r bb2bef026a52 -r 461a6befb7c3 nnchat.c --- a/nnchat.c Thu Jun 23 11:25:00 2011 +0300 +++ b/nnchat.c Thu Jun 23 12:53:56 2011 +0300 @@ -1322,8 +1322,8 @@ th_cfg_add_section(&cfg, "server", tmpcfg); tmpcfg = NULL; - th_cfg_add_comment(&tmpcfg, "Proxy server type (0 = none, 1 = SOCKS 4, 2 = SOCKS 4A"); - th_cfg_add_int(&tmpcfg, "port", &optProxyType, optProxyType); + th_cfg_add_comment(&tmpcfg, "Proxy server type (0 = none, 1 = SOCKS 4, 2 = SOCKS 4a)"); + th_cfg_add_int(&tmpcfg, "type", &optProxyType, optProxyType); th_cfg_add_comment(&tmpcfg, "Proxy server host name"); th_cfg_add_string(&tmpcfg, "host", &optProxyServer, optProxyServer); th_cfg_add_comment(&tmpcfg, "Proxy port, 1080 is the standard SOCKS port");