diff options
author | David Sommerseth <dazo@users.sourceforge.net> | 2010-07-28 11:22:51 +0200 |
---|---|---|
committer | David Sommerseth <dazo@users.sourceforge.net> | 2010-07-28 11:22:51 +0200 |
commit | 328500c490c36c679e275dbf99c2820f58bcbaa3 (patch) | |
tree | 8e4fb0f8504c28d8d27aaa24618895bf09d6a439 /socket.c | |
parent | Solved hidden merge conflict between feat_misc and bugfix2.1 (diff) | |
parent | Added "net stop dnscache" and "net start dnscache" in front (diff) | |
download | openvpn-328500c490c36c679e275dbf99c2820f58bcbaa3.tar.xz |
Merge branch 'svn-BETA21' into beta2.2
Conflicts:
openvpn.8
- Enhancements to the --register-dns description
ssl.h
- Community changed n_packets and n_bytes to use
counter_type instead of int to avoid integer overflows
(commit 6484c6299cf298107316e6497)
Signed-off-by: David Sommerseth <dazo@users.sourceforge.net>
Diffstat (limited to 'socket.c')
-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]); |