From b6238333e6538bbf632b7e1ee9571c29fe86e860 Mon Sep 17 00:00:00 2001 From: vanhofen Date: Mon, 22 Oct 2018 23:47:00 +0200 Subject: [PATCH] zapit/getservices: fix currentservices.xml format for cable and terrestrial Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/7a698eed503fefc6f5699b771b1ce5142d900377 Author: vanhofen Date: 2018-10-22 (Mon, 22 Oct 2018) Origin message was: ------------------ - zapit/getservices: fix currentservices.xml format for cable and terrestrial --- src/zapit/src/getservices.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/zapit/src/getservices.cpp b/src/zapit/src/getservices.cpp index f5422ff80..af27229d8 100644 --- a/src/zapit/src/getservices.cpp +++ b/src/zapit/src/getservices.cpp @@ -1257,11 +1257,11 @@ bool CServiceManager::SaveCurrentServices(transponder_id_t tpid) footer = ""; } else if (CFrontend::isCable(tI->second.feparams.delsys)) { - sprintf(satstr, "\t<%s name=\"%s\"\n", "cable", spos_it->second.name.c_str()); + sprintf(satstr, "\t<%s name=\"%s\">\n", "cable", spos_it->second.name.c_str()); footer = ""; } else if (CFrontend::isTerr(tI->second.feparams.delsys)) { - sprintf(satstr, "\t<%s name=\"%s\"\n", "terrestrial", spos_it->second.name.c_str()); + sprintf(satstr, "\t<%s name=\"%s\">\n", "terrestrial", spos_it->second.name.c_str()); footer = ""; }