Module Name:    src
Committed By:   pooka
Date:           Tue Aug 10 21:48:23 UTC 2010

Modified Files:
        src/sys/rump/net/lib/libnet: component.c

Log Message:
Attach 1 loop instead of 0.

not tested on animals


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/rump/net/lib/libnet/component.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/libnet/component.c
diff -u src/sys/rump/net/lib/libnet/component.c:1.3 src/sys/rump/net/lib/libnet/component.c:1.4
--- src/sys/rump/net/lib/libnet/component.c:1.3	Mon Mar  1 13:12:21 2010
+++ src/sys/rump/net/lib/libnet/component.c	Tue Aug 10 21:48:23 2010
@@ -1,4 +1,4 @@
-/*	$NetBSD: component.c,v 1.3 2010/03/01 13:12:21 pooka Exp $	*/
+/*	$NetBSD: component.c,v 1.4 2010/08/10 21:48:23 pooka Exp $	*/
 
 /*
  * Copyright (c) 2009 Antti Kantee.  All Rights Reserved.
@@ -28,7 +28,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: component.c,v 1.3 2010/03/01 13:12:21 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: component.c,v 1.4 2010/08/10 21:48:23 pooka Exp $");
 
 #include <sys/param.h>
 #include <sys/domain.h>
@@ -46,6 +46,6 @@
 
 	ifinit1();
 	ifinit();
-	loopattach(0);
+	loopattach(1);
 	DOMAINADD(routedomain);
 }

Reply via email to