Module: sip-router Branch: master Commit: 9b6c7de606acc48b5876fa13159e9bb3e63d8c09 URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=9b6c7de6...
Author: Daniel-Constantin Mierla miconda@gmail.com Committer: Daniel-Constantin Mierla miconda@gmail.com Date: Wed Apr 21 15:11:05 2010 +0200
pv: fixed pv class names in log messages
---
modules_k/pv/pv_branch.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules_k/pv/pv_branch.c b/modules_k/pv/pv_branch.c index e162104..28b15e8 100644 --- a/modules_k/pv/pv_branch.c +++ b/modules_k/pv/pv_branch.c @@ -323,7 +323,7 @@ int pv_parse_branchx_name(pv_spec_p sp, str *in) return 0;
error: - LM_ERR("unknown PV time name %.*s\n", in->len, in->s); + LM_ERR("unknown PV branch name %.*s\n", in->len, in->s); return -1; }
@@ -404,7 +404,7 @@ int pv_parse_snd_name(pv_spec_p sp, str *in) return 0;
error: - LM_ERR("unknown PV time name %.*s\n", in->len, in->s); + LM_ERR("unknown PV snd name %.*s\n", in->len, in->s); return -1; }