From: David Sommerseth Date: Wed, 16 Nov 2016 18:38:15 +0000 (+0100) Subject: tun: Fix weird commit error causing a double assignment X-Git-Tag: v2.4_beta1~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1de37f3b194e56ff3245b9e6cf22eaff54ca3efe;p=thirdparty%2Fopenvpn.git 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 --- 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",