Skip to content

Commit

Permalink
README fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bogdan-iancu committed Jan 20, 2015
1 parent 701128a commit 9b4d41e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions modules/exec/README
Expand Up @@ -54,7 +54,7 @@ Jan Janak
1.5. exec_msg usage
1.6. exec_avp usage
1.7. exec_getenv usage
1.8. exec usage
1.8. async exec usage

Chapter 1. Admin Guide

Expand Down Expand Up @@ -336,10 +336,10 @@ exec_getenv("HOSTNAME", "$avp(localhost)");
to use them and what are their advantages, please refer to the
OpenSIPS online Manual.

Example 1.8. exec usage
Example 1.8. async exec usage
{
...
async( exec_dset("ruri-changer.sh","$ru","$ru"), resume );
async( exec("ruri-changer.sh","$ru","$ru"), resume );
}

route[resume] {
Expand Down
4 changes: 2 additions & 2 deletions modules/exec/doc/exec_admin.xml
Expand Up @@ -433,11 +433,11 @@ exec_getenv("HOSTNAME", "$avp(localhost)");
advantages, please refer to the OpenSIPS online Manual.
</para>
<example>
<title><function moreinfo="none">exec</function> usage</title>
<title><function moreinfo="none">async exec</function> usage</title>
<programlisting format="linespecific">
{
...
async( exec_dset("ruri-changer.sh","$ru","$ru"), resume );
async( exec("ruri-changer.sh","$ru","$ru"), resume );
}

route[resume] {
Expand Down

0 comments on commit 9b4d41e

Please sign in to comment.