aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2006-11-02 21:40:53 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2006-11-02 21:40:53 +0000
commit59ae68a326bd43a7f31682cf9402eb8775958ac6 (patch)
tree9dc9aa2cda2a1581ff88db783d4ceeb06b255be4 /include
parentc8c7938a68f65eb6d2ac3c10fb453da30f502b2b (diff)
Let's make application/function/hint lists read/write lists... just for kicks
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@47037 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include')
-rw-r--r--include/asterisk/pbx.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asterisk/pbx.h b/include/asterisk/pbx.h
index c558289c7..fbaef5477 100644
--- a/include/asterisk/pbx.h
+++ b/include/asterisk/pbx.h
@@ -73,7 +73,7 @@ struct ast_custom_function {
const char *syntax; /*!< Syntax description */
int (*read)(struct ast_channel *, char *, char *, char *, size_t); /*!< Read function, if read is supported */
int (*write)(struct ast_channel *, char *, char *, const char *); /*!< Write function, if write is supported */
- AST_LIST_ENTRY(ast_custom_function) acflist;
+ AST_RWLIST_ENTRY(ast_custom_function) acflist;
};
/*! \brief All switch functions have the same interface, so define a type for them */