summaryrefslogtreecommitdiff
path: root/include/asterisk/pbx.h
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2006-11-02 21:40:53 +0000
committerJoshua Colp <jcolp@digium.com>2006-11-02 21:40:53 +0000
commit7f7f2fe821f71b302d233081ee0f72e82c9701c2 (patch)
tree9dc9aa2cda2a1581ff88db783d4ceeb06b255be4 /include/asterisk/pbx.h
parenteee1b9e1fb738affb934fe2af16981fa15b9cfcc (diff)
Let's make application/function/hint lists read/write lists... just for kicks
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@47037 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk/pbx.h')
-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 */