Module: sip-router Branch: 3.1 Commit: 5e827db17414a02902ee8899d762af9933baec66 URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=5e827db17414a02902ee8899d762af9933baec66
Author: Sven Knoblich <[email protected]> Committer: Sven Knoblich <[email protected]> Date: Mon Sep 5 13:35:50 2011 +0200 core: fix typo in parser. - use correct function-name in log message of parse_param.c:parse_contact_class. (fixes flyspray-issue 147) (cherry picked from commit 21ff48876956bf1df67ace6651ea9782e297946b) --- parser/parse_param.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/parser/parse_param.c b/parser/parse_param.c index c68e237..90fe241 100644 --- a/parser/parse_param.c +++ b/parser/parse_param.c @@ -125,7 +125,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]) { _______________________________________________ sr-dev mailing list [email protected] http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-dev
