summaryrefslogtreecommitdiff
path: root/src/config.c
diff options
context:
space:
mode:
authorAlfred E. Heggestad <aeh@db.org>2016-06-06 10:49:26 +0200
committerAlfred E. Heggestad <aeh@db.org>2016-06-06 10:49:26 +0200
commit691faa26dcac2ac0fd2579321e546f50033dd238 (patch)
treec777782a669c8401b344ce4bd0d945c1511283cb /src/config.c
parent6910d50e9b1e80fe758b259149012e7e062eecd0 (diff)
config: initialize new network items
Diffstat (limited to 'src/config.c')
-rw-r--r--src/config.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/config.c b/src/config.c
index ed4db42..e8901f5 100644
--- a/src/config.c
+++ b/src/config.c
@@ -15,6 +15,10 @@
#define MOD_PRE "" /**< Module prefix */
+#undef SA_INIT
+#define SA_INIT { { {0} }, 0}
+
+
/** Core Run-time Configuration - populated from config file */
/** @todo: move config parsing/decoding to a module */
static struct config core_config = {
@@ -71,7 +75,9 @@ static struct config core_config = {
/* Network */
{
- ""
+ "",
+ { SA_INIT },
+ 0
},
#ifdef USE_VIDEO