Module Name: src
Committed By: joerg
Date: Mon Apr 5 16:35:30 UTC 2010
Modified Files:
src/sys/rump/net/lib/libvirtif: if_virt.c
Log Message:
Fix typo
To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/sys/rump/net/lib/libvirtif/if_virt.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/rump/net/lib/libvirtif/if_virt.c
diff -u src/sys/rump/net/lib/libvirtif/if_virt.c:1.17 src/sys/rump/net/lib/libvirtif/if_virt.c:1.18
--- src/sys/rump/net/lib/libvirtif/if_virt.c:1.17 Mon Apr 5 07:22:50 2010
+++ src/sys/rump/net/lib/libvirtif/if_virt.c Mon Apr 5 16:35:30 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: if_virt.c,v 1.17 2010/04/05 07:22:50 joerg Exp $ */
+/* $NetBSD: if_virt.c,v 1.18 2010/04/05 16:35:30 joerg Exp $ */
/*
* Copyright (c) 2008 Antti Kantee. All Rights Reserved.
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_virt.c,v 1.17 2010/04/05 07:22:50 joerg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_virt.c,v 1.18 2010/04/05 16:35:30 joerg Exp $");
#include <sys/param.h>
#include <sys/condvar.h>
@@ -232,7 +232,7 @@
}
m->m_len = m->m_pkthdr.len = n;
m->m_pkthdr.rcvif = ifp;
- bpf_mtap(ifp, m0);
+ bpf_mtap(ifp, m);
ether_input(ifp, m);
}