浏览代码

- do not report an error when contact header cannot be found, issue a
debugging message only, reported by Atle Samuelsen

Jan Janak 17 年之前
父节点
当前提交
bed413b730
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      select_core.c

+ 1 - 1
select_core.c

@@ -170,7 +170,7 @@ SELECT_uri_header(rpid)
 int parse_contact_header( struct sip_msg *msg)
 {
         if ( !msg->contact && ( parse_headers(msg,HDR_CONTACT_F,0)==-1 || !msg->contact)) {
-                ERR("bad msg or missing CONTACT header\n");
+                DBG("bad msg or missing CONTACT header\n");
                 return -1;
         }