cron2 has uploaded a new patch set (#2) to the change originally created by d12fk. ( http://gerrit.openvpn.net/c/openvpn/+/1339?usp=email )
The following approvals got outdated and were removed: Code-Review+2 by stipa Change subject: iservice: fix DNS address list generation ...................................................................... iservice: fix DNS address list generation While generating the address list string for the DNS server addresses, to be set in the registry, the offset is calculated the wrong way. This results in gaps between addresses after the first two. Reported-By: [email protected] Change-Id: I7252d5a252e91ffc03db142aa226c9eb1656480b Signed-off-by: Heiko Hund <[email protected]> Acked-by: Lev Stipakov <[email protected]> Gerrit URL: https://gerrit.openvpn.net/c/openvpn/+/1339 Message-Id: <[email protected]> Signed-off-by: Gert Doering <[email protected]> --- M src/openvpnserv/interactive.c 1 file changed, 1 insertion(+), 1 deletion(-) git pull ssh://gerrit.openvpn.net:29418/openvpn refs/changes/39/1339/2 diff --git a/src/openvpnserv/interactive.c b/src/openvpnserv/interactive.c index 577d89c..58f1e02 100644 --- a/src/openvpnserv/interactive.c +++ b/src/openvpnserv/interactive.c @@ -1873,7 +1873,7 @@ { RtlIpv4AddressToStringA(&msg->addr[i].ipv4, addrs + offset); } - offset += strlen(addrs); + offset = strlen(addrs); } err = SetNameServers(iid, msg->family, addrs); -- To view, visit http://gerrit.openvpn.net/c/openvpn/+/1339?usp=email To unsubscribe, or for help writing mail filters, visit http://gerrit.openvpn.net/settings?usp=email Gerrit-MessageType: newpatchset Gerrit-Project: openvpn Gerrit-Branch: master Gerrit-Change-Id: I7252d5a252e91ffc03db142aa226c9eb1656480b Gerrit-Change-Number: 1339 Gerrit-PatchSet: 2 Gerrit-Owner: d12fk <[email protected]> Gerrit-Reviewer: flichtenheld <[email protected]> Gerrit-Reviewer: plaisthos <[email protected]> Gerrit-Reviewer: stipa <[email protected]> Gerrit-CC: openvpn-devel <[email protected]>
_______________________________________________ Openvpn-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openvpn-devel
