summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--testsuites/samples/ChangeLog4
-rw-r--r--testsuites/samples/loopback/init.c14
2 files changed, 18 insertions, 0 deletions
diff --git a/testsuites/samples/ChangeLog b/testsuites/samples/ChangeLog
index faa308dd5a..a422a2ac7c 100644
--- a/testsuites/samples/ChangeLog
+++ b/testsuites/samples/ChangeLog
@@ -1,3 +1,7 @@
+2009-06-04 Ralf Corsépius <ralf.corsepius@rtems.org>
+
+ * loopback/init.c: Add missing initializers.
+
2009-04-28 Chris Johns <chrisj@rtems.org>
* iostream/system.h: Remove the Init prototype. Provide in
diff --git a/testsuites/samples/loopback/init.c b/testsuites/samples/loopback/init.c
index 174a763c3c..ed86adf498 100644
--- a/testsuites/samples/loopback/init.c
+++ b/testsuites/samples/loopback/init.c
@@ -51,6 +51,15 @@ static struct rtems_bsdnet_ifconfig loopback_config = {
NULL, /* link to next interface */
"127.0.0.1", /* IP address */
"255.0.0.0", /* IP net mask */
+ NULL, /* hardware_address */
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ NULL
};
struct rtems_bsdnet_config rtems_bsdnet_config = {
@@ -65,6 +74,11 @@ struct rtems_bsdnet_config rtems_bsdnet_config = {
"127.0.0.1", /* Log host */
{"127.0.0.1" }, /* Name server(s) */
{"127.0.0.1" }, /* NTP server(s) */
+ 0,
+ 0,
+ 0,
+ 0,
+ 0
};
/*