Module Name: src
Committed By: pooka
Date: Wed Sep 16 15:08:53 UTC 2009
Modified Files:
src/sys/rump/net/lib/libnet: component.c
Log Message:
call ifinit{,1}()
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 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.1 src/sys/rump/net/lib/libnet/component.c:1.2
--- src/sys/rump/net/lib/libnet/component.c:1.1 Thu May 28 00:02:16 2009
+++ src/sys/rump/net/lib/libnet/component.c Wed Sep 16 15:08:53 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: component.c,v 1.1 2009/05/28 00:02:16 pooka Exp $ */
+/* $NetBSD: component.c,v 1.2 2009/09/16 15:08:53 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.1 2009/05/28 00:02:16 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: component.c,v 1.2 2009/09/16 15:08:53 pooka Exp $");
#include <sys/param.h>
#include <sys/domain.h>
@@ -44,6 +44,8 @@
{
extern struct domain routedomain;
+ ifinit1();
+ ifinit();
loopattach(0);
DOMAINADD(routedomain);
}