From a0feb96d2ded3c8c8092de099c753834d8fcf469 Mon Sep 17 00:00:00 2001 From: Tom Early Date: Thu, 10 Jan 2019 14:53:47 -0700 Subject: [PATCH] fix to ReadCfgFile() --- QnetRemote.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/QnetRemote.cpp b/QnetRemote.cpp index 7e60c48..7d0e01b 100644 --- a/QnetRemote.cpp +++ b/QnetRemote.cpp @@ -87,7 +87,7 @@ bool ReadCfgFile() } cfg.GetValue(path+"_callsign", type, REPEATER, 0, 6); if (REPEATER.length() < 4) { - if (cfg.GetValue("ircddb.login", estr, REPEATER, 3, 6)) { + if (cfg.GetValue("ircddb_login", estr, REPEATER, 3, 6)) { fprintf(stderr, "no Callsign for the repeater was found!\n"); return true; }