Module Name:    src
Committed By:   yamt
Date:           Mon Oct 31 13:25:21 UTC 2011

Modified Files:
        src/sys/rump/net/lib/libvirtif: if_virt.c

Log Message:
fix a type in a printf message


To generate a diff of this commit:
cvs rdiff -u -r1.24 -r1.25 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.24 src/sys/rump/net/lib/libvirtif/if_virt.c:1.25
--- src/sys/rump/net/lib/libvirtif/if_virt.c:1.24	Sun Aug  7 14:03:16 2011
+++ src/sys/rump/net/lib/libvirtif/if_virt.c	Mon Oct 31 13:25:21 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: if_virt.c,v 1.24 2011/08/07 14:03:16 rmind Exp $	*/
+/*	$NetBSD: if_virt.c,v 1.25 2011/10/31 13:25:21 yamt 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.24 2011/08/07 14:03:16 rmind Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_virt.c,v 1.25 2011/10/31 13:25:21 yamt Exp $");
 
 #include <sys/param.h>
 #include <sys/condvar.h>
@@ -279,7 +279,7 @@ virtif_receiver(void *arg)
 				goto again;
 			}
 
-			printf("%s: read from /dev/tap failed. host if down?\n",
+			printf("%s: read from /dev/tap failed. host is down?\n",
 			    ifp->if_xname);
 			mutex_enter(&sc->sc_mtx);
 			/* could check if need go, done soon anyway */

Reply via email to