diff options
author | James Yonan <james@openvpn.net> | 2010-07-26 18:26:49 +0000 |
---|---|---|
committer | James Yonan <james@openvpn.net> | 2010-07-26 18:26:49 +0000 |
commit | 1400e1c156bfea6e3c0ff73ccbc8dd3503eb9ec3 (patch) | |
tree | 0ca0a96a95833b82a9779ff907e21ce83e8836af | |
parent | Added win/build_exe.py script, which is similar to (diff) | |
download | openvpn-1400e1c156bfea6e3c0ff73ccbc8dd3503eb9ec3.tar.xz |
Fixed typo: missing comment close.
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@6347 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to '')
-rw-r--r-- | socket.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -231,7 +231,7 @@ getaddr_multi (unsigned int flags, n); /* choose address randomly, for basic load-balancing capability */ - /*ia.s_addr = *(in_addr_t *) (h->h_addr_list[get_random () % n]);* + /*ia.s_addr = *(in_addr_t *) (h->h_addr_list[get_random () % n]);*/ /* choose first address */ ia.s_addr = *(in_addr_t *) (h->h_addr_list[0]); |