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/libnet Attach 1 loop instead of 0.



details:   https://anonhg.NetBSD.org/src/rev/41bb12efb834
branches:  trunk
changeset: 757016:41bb12efb834
user:      pooka <pooka%NetBSD.org@localhost>
date:      Tue Aug 10 21:48:23 2010 +0000

description:
Attach 1 loop instead of 0.

not tested on animals

diffstat:

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

diffs (26 lines):

diff -r 08e258b8fdbe -r 41bb12efb834 sys/rump/net/lib/libnet/component.c
--- a/sys/rump/net/lib/libnet/component.c       Tue Aug 10 21:46:12 2010 +0000
+++ b/sys/rump/net/lib/libnet/component.c       Tue Aug 10 21:48:23 2010 +0000
@@ -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);
 }



Home | Main Index | Thread Index | Old Index