summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2006-05-01 15:09:51 +0000
committerRussell Bryant <russell@russellbryant.com>2006-05-01 15:09:51 +0000
commit992e0c1eed5ef470a3dec953e594fed5372f05f8 (patch)
treee2ca4e317b90f6e44376c271cad70628521fd949 /include
parent48b812829d547c60b1ee33352f2c00d4316d143c (diff)
- convert the list of dialplan function to the list macros
- add missing locking of the functions list in the "show functions" CLI command git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@23950 65c4cc65-6c06-0410-ace0-fbb531ad65f3
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 abe720981..c165f70c0 100644
--- a/include/asterisk/pbx.h
+++ b/include/asterisk/pbx.h
@@ -71,7 +71,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 */
- struct ast_custom_function *next;
+ AST_LIST_ENTRY(ast_custom_function) acflist;
};
/*! \brief All switch functions have the same interface, so define a type for them */