From 656fbc9c12426ef3816d680f4fbae05017ceda54 Mon Sep 17 00:00:00 2001 From: Daniel-Constantin Mierla Date: Tue, 26 Feb 2019 07:54:24 +0100 Subject: [PATCH] core: msgid made unsigned inside msg_ctx_id_t to match field in sip_msg_t --- src/core/parser/msg_parser.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/parser/msg_parser.h b/src/core/parser/msg_parser.h index 969fbc6f9b3..6890fee0b36 100644 --- a/src/core/parser/msg_parser.h +++ b/src/core/parser/msg_parser.h @@ -474,11 +474,11 @@ void reset_ua(struct sip_msg* const msg); /** * struct to identify a msg context - * - the pair of pid and message-id + * - the pair of message-id and pid (fields in sip_msg_t) */ typedef struct msg_ctx_id { + unsigned int msgid; int pid; - int msgid; } msg_ctx_id_t; /**