Module: sip-router Branch: ez/sdpops Commit: 7d094f8940f160b60c9ae100777028a615c28868 URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=7d094f89...
Author: Konstantin Mosesov ez@voipgroup.org.ua Committer: Konstantin Mosesov ez@voipgroup.org.ua Date: Mon May 13 12:13:04 2013 +0300
modules/sdpops: corrected arguments misstype in dp_get_line_startswith()
---
modules/sdpops/doc/sdpops_admin.xml | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/sdpops/doc/sdpops_admin.xml b/modules/sdpops/doc/sdpops_admin.xml index d644625..6ddce4b 100644 --- a/modules/sdpops/doc/sdpops_admin.xml +++ b/modules/sdpops/doc/sdpops_admin.xml @@ -381,7 +381,7 @@ if(sdp_content()) { <title><function>sdp_get_line_startswith</function> usage</title> <programlisting format="linespecific"> ... -if(sdp_get_line_startswith("m=", "$avp(mline)")) { +if(sdp_get_line_startswith("$avp(mline)", "m=")) { xlog("m-line: $avp(mline)\n"); } ...