Module: sip-router Branch: master Commit: 0bea3e5cf97593b2955aec4bb545b4f8698bd964 URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=0bea3e5c...
Author: Juha Heinanen jh@tutpro.com Committer: Juha Heinanen jh@tutpro.com Date: Sun Apr 13 10:34:30 2014 +0300
modules/sdpops: fixed typo in readme example
---
modules/sdpops/README | 2 +- modules/sdpops/doc/sdpops_admin.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/sdpops/README b/modules/sdpops/README index e694b17..ce92cc1 100644 --- a/modules/sdpops/README +++ b/modules/sdpops/README @@ -293,7 +293,7 @@ if(sdp_with_transport("RTP/SAVP")) Example 1.9. sdp_with_transport_like usage ... # check for SAVPF stream -if(sdp_with_transport("SAVPF")) +if(sdp_with_transport_like("SAVPF")) { # the session has a SAVPF stream, e.g., RTP/SAVPF or UDP/TLS/RTP/SAVPF } diff --git a/modules/sdpops/doc/sdpops_admin.xml b/modules/sdpops/doc/sdpops_admin.xml index 4ce7a01..53216fd 100644 --- a/modules/sdpops/doc/sdpops_admin.xml +++ b/modules/sdpops/doc/sdpops_admin.xml @@ -293,7 +293,7 @@ if(sdp_with_transport("RTP/SAVP")) <programlisting format="linespecific"> ... # check for SAVPF stream -if(sdp_with_transport("SAVPF")) +if(sdp_with_transport_like("SAVPF")) { # the session has a SAVPF stream, e.g., RTP/SAVPF or UDP/TLS/RTP/SAVPF }