summaryrefslogtreecommitdiff
path: root/funcs/func_uri.c
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2006-11-14 21:33:59 +0000
committerJoshua Colp <jcolp@digium.com>2006-11-14 21:33:59 +0000
commit7d1771b57504314a24105a8e08000bde95f0ec2e (patch)
treed7e7a638888a44b80fe2a81a7c51f721b32a389c /funcs/func_uri.c
parenta8ef79fa6f67cc3805a3847ea3c519793f79e8ae (diff)
Merged revisions 47625 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r47625 | file | 2006-11-14 16:30:44 -0500 (Tue, 14 Nov 2006) | 2 lines Small documentation clarification for URIENCODE. (issue #8294 reported by salaud) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@47626 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'funcs/func_uri.c')
-rw-r--r--funcs/func_uri.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/funcs/func_uri.c b/funcs/func_uri.c
index 557fea191..2680dd678 100644
--- a/funcs/func_uri.c
+++ b/funcs/func_uri.c
@@ -74,14 +74,14 @@ static int uridecode(struct ast_channel *chan, char *cmd, char *data,
static struct ast_custom_function urldecode_function = {
.name = "URIDECODE",
- .synopsis = "Decodes an URI-encoded string.",
+ .synopsis = "Decodes a URI-encoded string according to RFC 2396.",
.syntax = "URIDECODE(<data>)",
.read = uridecode,
};
static struct ast_custom_function urlencode_function = {
.name = "URIENCODE",
- .synopsis = "Encodes a string to URI-safe encoding.",
+ .synopsis = "Encodes a string to URI-safe encoding according to RFC 2396.",
.syntax = "URIENCODE(<data>)",
.read = uriencode,
};