Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/rump/net/lib/libshmif fix comment



details:   https://anonhg.NetBSD.org/src/rev/5cd2ba8f9948
branches:  trunk
changeset: 749464:5cd2ba8f9948
user:      pooka <pooka%NetBSD.org@localhost>
date:      Mon Nov 30 11:14:58 2009 +0000

description:
fix comment

diffstat:

 sys/rump/net/lib/libshmif/if_shmem.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 233b2bc946b9 -r 5cd2ba8f9948 sys/rump/net/lib/libshmif/if_shmem.c
--- a/sys/rump/net/lib/libshmif/if_shmem.c      Mon Nov 30 10:59:19 2009 +0000
+++ b/sys/rump/net/lib/libshmif/if_shmem.c      Mon Nov 30 11:14:58 2009 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: if_shmem.c,v 1.9 2009/10/20 23:29:57 pooka Exp $       */
+/*     $NetBSD: if_shmem.c,v 1.10 2009/11/30 11:14:58 pooka Exp $      */
 
 /*
  * Copyright (c) 2009 Antti Kantee.  All Rights Reserved.
@@ -28,7 +28,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_shmem.c,v 1.9 2009/10/20 23:29:57 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_shmem.c,v 1.10 2009/11/30 11:14:58 pooka Exp $");
 
 #include <sys/param.h>
 #include <sys/fcntl.h>
@@ -373,7 +373,7 @@
                m->m_len = m->m_pkthdr.len = pktlen;
                m->m_pkthdr.rcvif = ifp;
 
-               /* if it's to us, don't pass up and reuse storage space */
+               /* if it's from us, don't pass up and reuse storage space */
                eth = mtod(m, struct ether_header *);
                if (memcmp(eth->ether_shost, sc->sc_myaddr, 6) != 0) {
                        ifp->if_input(ifp, m);



Home | Main Index | Thread Index | Old Index