From aeb33342a48031059de038473a142712baac3c98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Gallou=C3=ABt?= Date: Thu, 10 May 2018 19:53:06 +0000 Subject: [PATCH] Remove useless mtu log MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Adrien Gallouët --- src/bind.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/bind.c b/src/bind.c index 0e726f3..de38e90 100644 --- a/src/bind.c +++ b/src/bind.c @@ -94,8 +94,6 @@ gt_setup_mtu(struct mud *mud, const char *tun_name) if (mtu == oldmtu) return mtu; - gt_log("setup MTU to %zu on interface %s\n", mtu, tun_name); - if (iface_set_mtu(tun_name, mtu) == -1) perror("tun_set_mtu");