Module: sip-router Branch: master Commit: 21ff48876956bf1df67ace6651ea9782e297946b URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=21ff4887...
Author: Sven Knoblich sven.knoblich@1und1.de Committer: Sven Knoblich sven.knoblich@1und1.de 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)
---
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 6e8f653..951d1d6 100644 --- a/parser/parse_param.c +++ b/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]) {