summaryrefslogtreecommitdiff
path: root/sys/netccitt
diff options
context:
space:
mode:
authorFederico G. Schwindt <fgsch@cvs.openbsd.org>2001-06-25 01:50:19 +0000
committerFederico G. Schwindt <fgsch@cvs.openbsd.org>2001-06-25 01:50:19 +0000
commitf642fb2e9a5edbb5c8e001aab6f8d051ccfd10ac (patch)
tree9ab160bd7df1a0dede4fbd84f86a4e072d37817a /sys/netccitt
parenta10f9958afb69fd8b8735a135507dcf7ace599cb (diff)
Move common post M_COPY_HDR manipulation to the macro itself; angelos@ ok.
Diffstat (limited to 'sys/netccitt')
-rw-r--r--sys/netccitt/if_x25subr.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/netccitt/if_x25subr.c b/sys/netccitt/if_x25subr.c
index ebdb3b243a4..8e3ea1edaeb 100644
--- a/sys/netccitt/if_x25subr.c
+++ b/sys/netccitt/if_x25subr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_x25subr.c,v 1.7 2001/06/15 03:38:35 itojun Exp $ */
+/* $OpenBSD: if_x25subr.c,v 1.8 2001/06/25 01:50:17 fgsch Exp $ */
/* $NetBSD: if_x25subr.c,v 1.13 1996/05/09 22:29:25 scottr Exp $ */
/*
@@ -346,8 +346,6 @@ x25_ifoutput(ifp, m0, dst, rt)
if (m == 0)
senderr(ENOBUFS);
M_COPY_HDR(m, m0);
- m_tag_init(m0);
- m0->m_flags &= ~M_PKTHDR;
m->m_pkthdr.len = plen;
m->m_next = m0;
}