浏览代码

core: fix typo in parser.

- use correct function-name in log message of parse_param.c:parse_contact_class.
  (fixes flyspray-issue 147)
Sven Knoblich 14 年之前
父节点
当前提交
21ff488769
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      parser/parse_param.c

+ 1 - 1
parser/parse_param.c

@@ -123,7 +123,7 @@ static inline void parse_contact_class(param_hooks_t* _h, param_t* _p)
 		return;
 	}
 	if (!_h) {
-		LOG(L_CRIT, "BUG: parse_uri_class: NULL param hook pointer\n");
+		LOG(L_CRIT, "BUG: parse_contact_class: NULL param hook pointer\n");
 		return;
 	}
 	switch(_p->name.s[0]) {