From ece0242b473dae192cfc359b982375756e7501a6 Mon Sep 17 00:00:00 2001 From: rpaulo Date: Fri, 3 Mar 2006 19:46:35 +0000 Subject: [PATCH] Fix typo in comment. --- sys/net/if_tun.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/net/if_tun.c b/sys/net/if_tun.c index fa7ef69a7def..d57ac42e2dc5 100644 --- a/sys/net/if_tun.c +++ b/sys/net/if_tun.c @@ -1,4 +1,4 @@ -/* $NetBSD: if_tun.c,v 1.80 2006/02/28 00:38:35 rpaulo Exp $ */ +/* $NetBSD: if_tun.c,v 1.81 2006/03/03 19:46:35 rpaulo Exp $ */ /* * Copyright (c) 1988, Julian Onions @@ -15,7 +15,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: if_tun.c,v 1.80 2006/02/28 00:38:35 rpaulo Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_tun.c,v 1.81 2006/03/03 19:46:35 rpaulo Exp $"); #include "opt_inet.h" #include "opt_ns.h" @@ -543,7 +543,7 @@ tun_output(struct ifnet *ifp, struct mbuf *m0, struct sockaddr *dst, } bcopy(dst, mtod(m0, char *), dst->sa_len); } else { - /* Prepend the adress family */ + /* Prepend the address family */ M_PREPEND(m0,sizeof(*af),M_DONTWAIT); if (m0 == NULL) { IF_DROP(&ifp->if_snd);