From 5c5f21631f673d3d3719514d6f498b11f1828e54 Mon Sep 17 00:00:00 2001 From: Rolf Ahrenberg Date: Mon, 22 Dec 2014 20:16:28 +0200 Subject: [PATCH] Added transponder information into the device info menu. --- device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/device.c b/device.c index e7730c2..f44431d 100644 --- a/device.c +++ b/device.c @@ -116,7 +116,7 @@ cString cSatipDevice::GetSatipStatus(void) else info = cString::sprintf("%sCardIndex: %d HasLock: no\n", *info, device->CardIndex()); if (channel && channel->Number() > 0) - info = cString::sprintf("%sChannel: %s\n", *info, (channel && channel->Number() > 0) ? channel->Name() : "---"); + info = cString::sprintf("%sTransponder: %d Channel: %s\n", *info, (channel && channel->Number() > 0) ? channel->Transponder() : 0, (channel && channel->Number() > 0) ? channel->Name() : "---"); if (timers) info = cString::sprintf("%sRecording: %d timer%s\n", *info, timers, (timers > 1) ? "s" : ""); info = cString::sprintf("%s\n", *info);