summaryrefslogtreecommitdiff
path: root/src/shared
diff options
context:
space:
mode:
authorS. Hameed <shameed@jp.adit-jv.com>2015-03-20 18:01:24 +0900
committerAlexander Wenzel <Alexander.AW.Wenzel@bmw.de>2015-04-01 10:13:01 +0200
commit2cec5d20ae0b5361a84bfb8170335f2502ddd88f (patch)
tree553b38fee8d08e13fec37ce7e47eab2a3cef18a9 /src/shared
parent3c89cdf9ca2aae9e0a602997ed0245692ddf976a (diff)
downloadDLT-daemon-2cec5d20ae0b5361a84bfb8170335f2502ddd88f.tar.gz
Add Service ID Last entry to avoid further modifications in dependent code
Signed-off-by: S. Hameed <shameed@jp.adit-jv.com> Signed-off-by: Christoph Lipka <clipka@de.adit-jv.com>
Diffstat (limited to 'src/shared')
-rwxr-xr-xsrc/shared/dlt_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/dlt_common.c b/src/shared/dlt_common.c
index 194f548..dce48c6 100755
--- a/src/shared/dlt_common.c
+++ b/src/shared/dlt_common.c
@@ -953,7 +953,7 @@ int dlt_message_payload(DltMessage *msg,char *text,int textlength,int type,int v
/* process message id / service id */
if (DLT_MSG_IS_CONTROL(msg))
{
- if (id > 0 && id <= DLT_SERVICE_ID_MESSAGE_BUFFER_OVERFLOW)
+ if (id > 0 && id < DLT_SERVICE_ID_LAST_ENTRY)
{
snprintf(text+strlen(text),textlength-strlen(text),"%s",service_id[id]); /* service id */
}