diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2003-04-18 13:48:47 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2003-04-18 13:48:47 +0200 |
commit | 0f82d5c01424425454d476602aa50b4f6c0c7b04 (patch) | |
tree | 07422b8575619ae376d2214335c1e14a9ec0ea3f /ci.c | |
parent | 78d85cee06c99ff4d31e8a2af929b198824b68d9 (diff) | |
download | vdr-0f82d5c01424425454d476602aa50b4f6c0c7b04.tar.gz vdr-0f82d5c01424425454d476602aa50b4f6c0c7b04.tar.bz2 |
Missing LL support is no longer an error
Diffstat (limited to 'ci.c')
-rw-r--r-- | ci.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: ci.c 1.10 2003/04/18 12:48:49 kls Exp $ + * $Id: ci.c 1.11 2003/04/18 13:48:47 kls Exp $ */ /* XXX TODO @@ -1313,9 +1313,10 @@ cCiHandler *cCiHandler::CreateCiHandler(const char *FileName) if (Caps.slot_type == CA_CI_LINK) return new cCiHandler(fd_ca, NumSlots); else - esyslog("ERROR: CAM doesn't support link layer interface"); + isyslog("CAM doesn't support link layer interface"); } - esyslog("ERROR: no CAM slots found"); + else + esyslog("ERROR: no CAM slots found"); } else LOG_ERROR_STR(FileName); |