summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2007-07-11 20:07:07 +0000
committerJoshua Colp <jcolp@digium.com>2007-07-11 20:07:07 +0000
commitfde3d4b0866f85ca1b3fbe239622de67bed7199e (patch)
treec65d62d3933b7f73f7ce512136d276968a3f5bc6 /include
parent4f84931f124383f296382f6474aec4664a73454e (diff)
Use linkedlist macros for UDPTL protocol list.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@74703 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include')
-rw-r--r--include/asterisk/udptl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asterisk/udptl.h b/include/asterisk/udptl.h
index bc1498f6e..4ee72b825 100644
--- a/include/asterisk/udptl.h
+++ b/include/asterisk/udptl.h
@@ -42,7 +42,7 @@ struct ast_udptl_protocol {
/* Set UDPTL peer */
int (* const set_udptl_peer)(struct ast_channel *chan, struct ast_udptl *peer);
const char * const type;
- struct ast_udptl_protocol *next;
+ AST_RWLIST_ENTRY(ast_udptl_protocol) list;
};
struct ast_udptl;