From 1de37f3b194e56ff3245b9e6cf22eaff54ca3efe Mon Sep 17 00:00:00 2001 From: David Sommerseth Date: Wed, 16 Nov 2016 19:38:15 +0100 Subject: [PATCH] tun: Fix weird commit error causing a double assignment When committing 7756043c01dd0b, something odd happened causing the patch to have a duplicate 'ifconfig_ipv6_remote =' assignment. Signed-off-by: David Sommerseth Acked-by: Gert Doering 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 --- src/openvpn/tun.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openvpn/tun.c b/src/openvpn/tun.c index 3815f0fc8..77ae72fa8 100644 --- a/src/openvpn/tun.c +++ b/src/openvpn/tun.c @@ -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", -- 2.47.3