summaryrefslogtreecommitdiff
path: root/funcs/func_curl.c
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2009-06-15 17:34:30 +0000
committerKevin P. Fleming <kpfleming@digium.com>2009-06-15 17:34:30 +0000
commit82fb56886e20e6ed5e97058e68fb32c88029f060 (patch)
treefe279b2c51ac4293291cc172302c80d3d642c06f /funcs/func_curl.c
parent43792496747f84ee565c35ef6e0262192e0663cb (diff)
More 'static' qualifiers on module global variables.
The 'pglobal' tool is quite handy indeed :-) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@200620 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'funcs/func_curl.c')
-rw-r--r--funcs/func_curl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/funcs/func_curl.c b/funcs/func_curl.c
index 482502558..96af9b468 100644
--- a/funcs/func_curl.c
+++ b/funcs/func_curl.c
@@ -569,7 +569,7 @@ static int acf_curl2_exec(struct ast_channel *chan, const char *cmd, char *info,
return acf_curl_helper(chan, cmd, info, NULL, buf, len);
}
-struct ast_custom_function acf_curl = {
+static struct ast_custom_function acf_curl = {
.name = "CURL",
.synopsis = "Retrieves the contents of a URL",
.syntax = "CURL(url[,post-data])",
@@ -580,7 +580,7 @@ struct ast_custom_function acf_curl = {
.read2 = acf_curl2_exec,
};
-struct ast_custom_function acf_curlopt = {
+static struct ast_custom_function acf_curlopt = {
.name = "CURLOPT",
.synopsis = "Set options for use with the CURL() function",
.syntax = "CURLOPT(<option>)",