diff --git a/modules/nat_traversal/nat_traversal.c b/modules/nat_traversal/nat_traversal.c index 45fa5c0a683..67b65fad04c 100644 --- a/modules/nat_traversal/nat_traversal.c +++ b/modules/nat_traversal/nat_traversal.c @@ -1474,7 +1474,7 @@ FixContact(struct sip_msg *msg) } offset = contact->uri.s - msg->buf; - anchor = del_lump(msg, offset, contact->uri.len, HDR_CONTACT_F); + anchor = del_lump(msg, offset, contact->uri.len, (enum _hdr_types_t)HDR_CONTACT_F); if (!anchor) { pkg_free(buf); @@ -1484,7 +1484,7 @@ FixContact(struct sip_msg *msg) len = sprintf(buf, "%.*s%s:%d%.*s", before_host.len, before_host.s, newip.s, newport, after.len, after.s); - if (insert_new_lump_after(anchor, buf, len, HDR_CONTACT_F) == 0) { + if (insert_new_lump_after(anchor, buf, len, (enum _hdr_types_t)HDR_CONTACT_F) == 0) { pkg_free(buf); return -1; }