From: james Date: Sat, 30 May 2009 20:20:36 +0000 (+0000) Subject: Fixed bug where the remote_X environmental variables were not being X-Git-Tag: v2.1_rc17~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2f26a79c8802d00d56660ddefc509719a78fa785;p=thirdparty%2Fopenvpn.git Fixed bug where the remote_X environmental variables were not being set correctly when the 'local' option is specifed. git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@4476 e7ae566f-a301-0410-adde-c780ea21d3b5 --- diff --git a/options.c b/options.c index ddf9f35e2..7687ec0b9 100644 --- a/options.c +++ b/options.c @@ -771,8 +771,8 @@ setenv_connection_entry (struct env_set *es, setenv_str_i (es, "proto", proto2ascii (e->proto, false), i); setenv_str_i (es, "local", e->local, i); setenv_int_i (es, "local_port", e->local_port, i); - setenv_str_i (es, "remote", e->local, i); - setenv_int_i (es, "remote_port", e->local_port, i); + setenv_str_i (es, "remote", e->remote, i); + setenv_int_i (es, "remote_port", e->remote_port, i); #ifdef ENABLE_HTTP_PROXY if (e->http_proxy_options)