summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Pöschel <github@basicmaster.de>2017-10-15 01:29:14 +0200
committerStefan Pöschel <github@basicmaster.de>2017-10-15 01:30:57 +0200
commit7a57fb48c25b0dae4e372b8e522f308c589bb35e (patch)
treeb0e3fdecf9abe08e859973bd49edba6f0878fb40 /src
parented7e9231e9f4c472a134ad46e6bc70b39684ddf6 (diff)
downloaddabmux-7a57fb48c25b0dae4e372b8e522f308c589bb35e.tar.gz
dabmux-7a57fb48c25b0dae4e372b8e522f308c589bb35e.tar.bz2
dabmux-7a57fb48c25b0dae4e372b8e522f308c589bb35e.zip
FIG 0/9: set default international table ID to 1
When no value was specified, this field was set to 0. That value however is reserved, so default to 1 (which most people might want to use).
Diffstat (limited to 'src')
-rw-r--r--src/ConfigParser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ConfigParser.cpp b/src/ConfigParser.cpp
index 9d361e1..c2f286d 100644
--- a/src/ConfigParser.cpp
+++ b/src/ConfigParser.cpp
@@ -368,7 +368,7 @@ static void parse_general(ptree& pt,
etiLog.level(warn) << "ECC is 0!";
}
- ensemble->international_table = pt_ensemble.get("international-table", 0);
+ ensemble->international_table = pt_ensemble.get("international-table", 1);
string lto_auto = pt_ensemble.get("local-time-offset", "");
if (lto_auto == "auto") {