summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY1
-rw-r--r--transfer.c3
2 files changed, 2 insertions, 2 deletions
diff --git a/HISTORY b/HISTORY
index ee204d6a..5b4abd2a 100644
--- a/HISTORY
+++ b/HISTORY
@@ -6212,3 +6212,4 @@ Video Disk Recorder Revision History
- Several code modifications to avoid compiler warnings (thanks to Winfried Köhler).
- Added stream type 11172 AUDIO to cPatPmtParser::ParsePmt() (thanks to Johann
Friedrichs).
+- Removed debug output of '-' from cTransfer::Receive().
diff --git a/transfer.c b/transfer.c
index 0616f9b9..02ef042c 100644
--- a/transfer.c
+++ b/transfer.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: transfer.c 2.3 2009/01/23 16:44:29 kls Exp $
+ * $Id: transfer.c 2.4 2009/12/06 14:22:23 kls Exp $
*/
#include "transfer.h"
@@ -45,7 +45,6 @@ void cTransfer::Receive(uchar *Data, int Length)
for (int i = 0; i < 100; i++) {
if (PlayTs(Data, Length) > 0)
return;
- fprintf(stderr, "-");//XXX just for testing - remove when stable
cCondWait::SleepMs(10);
}
esyslog("ERROR: TS packet not accepted in Transfer Mode");