summaryrefslogtreecommitdiff
path: root/ci.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2005-12-30 15:43:21 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2005-12-30 15:43:21 +0100
commitc65133979fa79f0695a126c0324c4917e51242d8 (patch)
treecfaec31fda46753e1a4e1136647b30611b7836e9 /ci.c
parent54af5518e47d61b9c674ca9a72defb87aac07baf (diff)
downloadvdr-c65133979fa79f0695a126c0324c4917e51242d8.tar.gz
vdr-c65133979fa79f0695a126c0324c4917e51242d8.tar.bz2
Changed all "illegal" to "invalid" in error messages
Diffstat (limited to 'ci.c')
-rw-r--r--ci.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ci.c b/ci.c
index 163ad970..f2c4240f 100644
--- a/ci.c
+++ b/ci.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: ci.c 1.40 2005/11/26 13:36:51 kls Exp $
+ * $Id: ci.c 1.41 2005/12/30 15:41:38 kls Exp $
*/
#include "ci.h"
@@ -185,7 +185,7 @@ cTPDU::cTPDU(uint8_t Slot, uint8_t Tcid, uint8_t Tag, int Length, const uint8_t
size = 6;
}
else
- esyslog("ERROR: illegal data length for TPDU tag 0x%02X: %d", Tag, Length);
+ esyslog("ERROR: invalid data length for TPDU tag 0x%02X: %d", Tag, Length);
break;
case T_DATA_LAST:
case T_DATA_MORE:
@@ -198,7 +198,7 @@ cTPDU::cTPDU(uint8_t Slot, uint8_t Tcid, uint8_t Tag, int Length, const uint8_t
size = Length + (p - data);
}
else
- esyslog("ERROR: illegal data length for TPDU tag 0x%02X: %d", Tag, Length);
+ esyslog("ERROR: invalid data length for TPDU tag 0x%02X: %d", Tag, Length);
break;
default:
esyslog("ERROR: unknown TPDU tag: 0x%02X", Tag);