]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Small documentation clarification for URIENCODE. (issue #8294 reported by salaud)
authorJoshua Colp <jcolp@digium.com>
Tue, 14 Nov 2006 21:30:44 +0000 (21:30 +0000)
committerJoshua Colp <jcolp@digium.com>
Tue, 14 Nov 2006 21:30:44 +0000 (21:30 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@47625 65c4cc65-6c06-0410-ace0-fbb531ad65f3

funcs/func_uri.c

index 557fea191282dd97d8eca62e552d362d8c1c81fd..2680dd678a6f6cf3ac5eb91e837733e68bb16883 100644 (file)
@@ -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,
 };