From c169e96a258c4940993d9de9586e82f5a9dbf69e Mon Sep 17 00:00:00 2001 From: svenhoefer Date: Mon, 22 Oct 2018 23:47:00 +0200 Subject: [PATCH] - zapit/getservices: fix currentservices.xml format for cable and terrestrial Signed-off-by: Thilo Graf --- 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 c1138d590..630201803 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 = ""; }