mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-03-17 00:50:35 +01:00
device: fix copy/paste error in nm-device-ip-tunnel.c
Fixes:351c562491('devices: support VTI tunnels') (cherry picked from commit933e8ea11c)
This commit is contained in:
parent
8949dd8f3c
commit
56ec877f94
1 changed files with 2 additions and 2 deletions
|
|
@ -296,7 +296,7 @@ clear:
|
|||
if (lnk->ikey)
|
||||
input_key = g_strdup_printf("%u", lnk->ikey);
|
||||
if (lnk->okey)
|
||||
input_key = g_strdup_printf("%u", lnk->okey);
|
||||
output_key = g_strdup_printf("%u", lnk->okey);
|
||||
} else if (priv->mode == NM_IP_TUNNEL_MODE_VTI6) {
|
||||
const NMPlatformLnkVti6 *lnk;
|
||||
|
||||
|
|
@ -313,7 +313,7 @@ clear:
|
|||
if (lnk->ikey)
|
||||
input_key = g_strdup_printf("%u", lnk->ikey);
|
||||
if (lnk->okey)
|
||||
input_key = g_strdup_printf("%u", lnk->okey);
|
||||
output_key = g_strdup_printf("%u", lnk->okey);
|
||||
} else
|
||||
g_return_if_reached();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue