From 6715a2eeff4b40a7e31ce9fb5a085067c05a6245 Mon Sep 17 00:00:00 2001 From: john30 Date: Sun, 1 Jan 2017 15:35:48 +0100 Subject: [PATCH] use scan ID as fallback for default circuit name --- src/ebusd/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ebusd/main.cpp b/src/ebusd/main.cpp index 41112808..b97ec3a1 100644 --- a/src/ebusd/main.cpp +++ b/src/ebusd/main.cpp @@ -916,7 +916,7 @@ result_t loadScanConfigFile(MessageMap* messages, unsigned char address, SymbolS continue; if (name.length()<3 || name.find_first_of('.')!=2) { // different from the scheme "ZZ." name = *it; - result = messages->readFromFile(name, opt.checkConfig); + result = messages->readFromFile(name, opt.checkConfig, "", ident); if (result==RESULT_OK) logNotice(lf_main, "read common config file %s", name.c_str()); else