From 2d571948d88917818f69e97239c2c7d334d5cf50 Mon Sep 17 00:00:00 2001 From: max_10 Date: Tue, 24 Oct 2017 00:19:29 +0200 Subject: [PATCH] eDVBCISlot forgotten --- common/ca_ci.cpp | 2 +- libdvbci/dvbci_datetimemgr.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common/ca_ci.cpp b/common/ca_ci.cpp index 0ef216f..165f13d 100644 --- a/common/ca_ci.cpp +++ b/common/ca_ci.cpp @@ -249,7 +249,7 @@ static bool sendRCV(eDVBCISlot* slot) } //send some data on an fd, for a special slot and connection_id -eData sendData(tSlot* slot, unsigned char* data, int len) +eData sendData(eDVBCISlot* slot, unsigned char* data, int len) { // only poll connection if we are not awaiting an answer slot->pollConnection = false; diff --git a/libdvbci/dvbci_datetimemgr.cpp b/libdvbci/dvbci_datetimemgr.cpp index b46e13f..26dbd79 100644 --- a/libdvbci/dvbci_datetimemgr.cpp +++ b/libdvbci/dvbci_datetimemgr.cpp @@ -63,7 +63,7 @@ void eDVBCIDateTimeSession::sendDateTime() struct tm tm_loc; unsigned char tag[3] = {0x9f, 0x84, 0x41}; // date_time_response unsigned char msg[7] = {0, 0, 0, 0, 0, 0, 0}; - printf("%s -> %s\n", FILENAME, __FUNCTION__); + printf("[CI DT] -> %s\n", __FUNCTION__); time_t t = time(NULL); if ( gmtime_r(&t, &tm_gmt) && localtime_r(&t, &tm_loc) ) {