diff options
author | Niels Provos <provos@cvs.openbsd.org> | 1998-06-30 23:50:18 +0000 |
---|---|---|
committer | Niels Provos <provos@cvs.openbsd.org> | 1998-06-30 23:50:18 +0000 |
commit | f7c8f5ef2e542c94983a658eb7a8505946d333c9 (patch) | |
tree | a4c312e352f464a8d720421e8ecae7eeff9bd080 | |
parent | 896deb0e9250c280bf32d1f0db90ecb5c448070b (diff) |
remove unnecessary assignment
-rw-r--r-- | sys/netinet/ip_output.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/netinet/ip_output.c b/sys/netinet/ip_output.c index ec0f71c91ee..915ba74f856 100644 --- a/sys/netinet/ip_output.c +++ b/sys/netinet/ip_output.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_output.c,v 1.31 1998/06/03 10:00:19 provos Exp $ */ +/* $OpenBSD: ip_output.c,v 1.32 1998/06/30 23:50:17 provos Exp $ */ /* $NetBSD: ip_output.c,v 1.28 1996/02/13 23:43:07 christos Exp $ */ /* @@ -353,8 +353,6 @@ ip_output(m0, va_alist) #endif /* ENCDEBUG */ while (tdb && tdb->tdb_xform) { - m0 = NULL; - /* Check if the SPI is invalid */ if (tdb->tdb_flags & TDBF_INVALID) { if (encdebug) |