From 7a57fb48c25b0dae4e372b8e522f308c589bb35e Mon Sep 17 00:00:00 2001 From: Stefan Pöschel Date: Sun, 15 Oct 2017 01:29:14 +0200 Subject: 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). --- src/ConfigParser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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") { -- cgit v1.2.3