aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/pbx.h
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-01 15:09:51 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-01 15:09:51 +0000
commitf4e8696f013dbd59c1ad8d7ef1bb22976993c5c2 (patch)
treee2ca4e317b90f6e44376c271cad70628521fd949 /include/asterisk/pbx.h
parent464f7a7cd8b37db28a57c93074b0209c68c2fb05 (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: http://svn.digium.com/svn/asterisk/trunk@23950 f38db490-d61c-443f-a65b-d21fe96a405b
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 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 */