From 0cf8755c9b68789809e2563e75e53300d89b0e61 Mon Sep 17 00:00:00 2001 From: Gary Palmer Date: Sun, 23 Jun 1996 00:51:05 +0000 Subject: [PATCH] Remove an un-necessary call to microtime() to set if_lastchange as it is set in the call to if_down in the line above --- sys/net/if_tun.c | 1 - 1 file changed, 1 deletion(-) diff --git a/sys/net/if_tun.c b/sys/net/if_tun.c index c74af18321b0..3b0d98e427e7 100644 --- a/sys/net/if_tun.c +++ b/sys/net/if_tun.c @@ -194,7 +194,6 @@ tunclose(dev_t dev, int foo, int bar, struct proc *p) if (ifp->if_flags & IFF_UP) { s = splimp(); if_down(ifp); - microtime(&ifp->if_lastchange); if (ifp->if_flags & IFF_RUNNING) { /* find internet addresses and delete routes */ register struct ifaddr *ifa;