aboutsummaryrefslogtreecommitdiffstats
path: root/funcs
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2006-11-14 21:30:44 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2006-11-14 21:30:44 +0000
commit4566c6196db04bf0dbb8b6e6c9a2597fd79a9121 (patch)
tree6deb153a929b4b9f029eff64645e578474c76f31 /funcs
parenta7fa577a5c323f49f64d345a55a9b6bf1a29c752 (diff)
Small documentation clarification for URIENCODE. (issue #8294 reported by salaud)
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@47625 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'funcs')
-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,
};