Module: sip-router
Branch: master
Commit: 4be7b35e189173130bee449ecd4fd14656c1a5a3
URL:
http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=4be7b35…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: Wed Aug 25 15:10:14 2010 +0200
textopsx: changed fixup to use fixup_var_pve_str_12()
- accept PVs inside str params
---
modules/textopsx/textopsx.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/textopsx/textopsx.c b/modules/textopsx/textopsx.c
index c9f2705..c20d1c0 100644
--- a/modules/textopsx/textopsx.c
+++ b/modules/textopsx/textopsx.c
@@ -155,7 +155,7 @@ static int change_reply_status_fixup(void** param, int param_no)
if (param_no == 1) {
return fixup_var_int_12(param, param_no);
} else if (param_no == 2)
- return fixup_var_str_12(param, param_no);
+ return fixup_var_pve_str_12(param, param_no);
else
return 0;
}