summaryrefslogtreecommitdiffstats
path: root/testsuites/samples
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-06-04 06:50:04 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-06-04 06:50:04 +0000
commitefb0cf6947538722c3409267fce433e02ca93b02 (patch)
tree377578d15a0579410fef2cb1404adf7235846187 /testsuites/samples
parentAdd PR 1420. (diff)
downloadrtems-efb0cf6947538722c3409267fce433e02ca93b02.tar.bz2
2009-06-04 Ralf Corsépius <ralf.corsepius@rtems.org>
* loopback/init.c: Add missing initializers.
Diffstat (limited to 'testsuites/samples')
-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
};
/*