mirror of
https://github.com/OpenVPN/openvpn.git
synced 2026-05-28 04:03:29 -04:00
tun: Fix weird commit error causing a double assignment
When committing 7756043c01, something odd happened causing
the patch to have a duplicate 'ifconfig_ipv6_remote =' assignment.
Signed-off-by: David Sommerseth <davids@openvpn.net>
Acked-by: Gert Doering <gert@greenie.muc.de>
Message-Id: <1479321495-1339-1-git-send-email-davids@openvpn.net>
URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg13103.html
Signed-off-by: Gert Doering <gert@greenie.muc.de>
This commit is contained in:
parent
7aea490103
commit
1de37f3b19
1 changed files with 1 additions and 1 deletions
|
|
@ -975,7 +975,7 @@ do_ifconfig (struct tuntap *tt,
|
|||
if ( tt->type == DEV_TYPE_TUN )
|
||||
{
|
||||
const char *ifconfig_ipv6_remote =
|
||||
ifconfig_ipv6_remote = print_in6_addr (tt->remote_ipv6, 0, &gc);
|
||||
print_in6_addr (tt->remote_ipv6, 0, &gc);
|
||||
|
||||
argv_printf (&argv,
|
||||
"%s %s inet6 plumb %s/%d %s up",
|
||||
|
|
|
|||
Loading…
Reference in a new issue