From 8b9cb443b426f935d38bba00920c4940ca3bfe1d Mon Sep 17 00:00:00 2001 From: Rolf Ahrenberg Date: Thu, 11 Oct 2007 21:05:35 +0000 Subject: [PATCH] Modified GetInformation(). --- streamer.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/streamer.c b/streamer.c index 9504f56..cc6a655 100644 --- a/streamer.c +++ b/streamer.c @@ -3,7 +3,7 @@ * * See the README file for copyright information and how to reach the author. * - * $Id: streamer.c,v 1.21 2007/10/09 22:12:17 rahrenbe Exp $ + * $Id: streamer.c,v 1.22 2007/10/11 21:05:35 rahrenbe Exp $ */ #include @@ -99,7 +99,8 @@ bool cIptvStreamer::Set(const char* Address, const int Port, cIptvProtocolIf* Pr cString cIptvStreamer::GetInformation(void) { //debug("cIptvStreamer::GetInformation()"); + cString info("Stream:"); if (protocol) - return protocol->GetInformation(); + return cString::sprintf("%s %s", *info, *protocol->GetInformation()); return NULL; }