summaryrefslogtreecommitdiff
path: root/src/daemon/dlt-daemon.c
diff options
context:
space:
mode:
authorChristoph Lipka <clipka@de.adit-jv.com>2014-12-17 16:58:12 +0900
committerAlexander Wenzel <Alexander.AW.Wenzel@bmw.de>2015-03-17 10:26:12 +0100
commitdb5b62a1c054667dc82929d90e195cd4a7060f4c (patch)
treefe840eb3b4fea4901a0d7299e87310844b33ff83 /src/daemon/dlt-daemon.c
parente0d403808a68c1c0309824c0df3b353a8aad7d16 (diff)
downloadDLT-daemon-db5b62a1c054667dc82929d90e195cd4a7060f4c.tar.gz
Workaround for duplicated log messages in offline trace file issue
Signed-off-by: Christoph Lipka <clipka@de.adit-jv.com>
Diffstat (limited to 'src/daemon/dlt-daemon.c')
-rw-r--r--src/daemon/dlt-daemon.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/daemon/dlt-daemon.c b/src/daemon/dlt-daemon.c
index 1a98ca9..621fcc9 100644
--- a/src/daemon/dlt-daemon.c
+++ b/src/daemon/dlt-daemon.c
@@ -2035,7 +2035,7 @@ int dlt_daemon_process_user_message_log(DltDaemon *daemon, DltDaemonLocal *daemo
/* send message to client or write to log file */
if((ret = dlt_daemon_client_send(DLT_DAEMON_SEND_TO_ALL,daemon,daemon_local,daemon_local->msg.headerbuffer+sizeof(DltStorageHeader),daemon_local->msg.headersize-sizeof(DltStorageHeader),
- daemon_local->msg.databuffer,daemon_local->msg.datasize,verbose)))
+ daemon_local->msg.databuffer,daemon_local->msg.datasize,verbose,0)))
{
if(ret == DLT_DAEMON_ERROR_BUFFER_FULL)
{
@@ -2404,7 +2404,7 @@ int dlt_daemon_send_ringbuffer_to_client(DltDaemon *daemon, DltDaemonLocal *daem
while ( (length = dlt_buffer_copy(&(daemon->client_ringbuffer), data, sizeof(data)) ) > 0)
{
- if((ret = dlt_daemon_client_send(DLT_DAEMON_SEND_FORCE,daemon,daemon_local,data,length,0,0,verbose)))
+ if((ret = dlt_daemon_client_send(DLT_DAEMON_SEND_FORCE,daemon,daemon_local,data,length,0,0,verbose,0)))
{
return ret;
}