Fix typo in comment.

This commit is contained in:
rpaulo 2006-03-03 19:46:35 +00:00
parent 5c3d90aec9
commit ece0242b47
1 changed files with 3 additions and 3 deletions

View File

@ -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 <jpo@cs.nott.ac.uk>
@ -15,7 +15,7 @@
*/
#include <sys/cdefs.h>
__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);