From: Guus Sliepen <guus@tinc-vpn.org>
Date: Fri, 8 Apr 2016 16:09:30 +0000 (+0200)
Subject: Use iface instead of interface.
X-Git-Tag: release-1.0.27~10
X-Git-Url: https://tinc-vpn.org/git/browse?a=commitdiff_plain;h=ecffb339c8670e3326f64eeb879ef4704152edf3;p=tinc

Use iface instead of interface.

This was accidentally added in commit 2f03a5d.
---

diff --git a/src/mingw/device.c b/src/mingw/device.c
index b77282ad..77787488 100644
--- a/src/mingw/device.c
+++ b/src/mingw/device.c
@@ -113,7 +113,7 @@ static bool setup_device(void) {
 	get_config_string(lookup_config(config_tree, "Device"), &device);
 	get_config_string(lookup_config(config_tree, "Interface"), &iface);
 
-	if(device && interface)
+	if(device && iface)
 		logger(LOG_WARNING, "Warning: both Device and Interface specified, results may not be as expected");
 
 	/* Open registry and look for network adapters */