summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2006-02-13 17:46:34 +0000
committerRussell Bryant <russell@russellbryant.com>2006-02-13 17:46:34 +0000
commit4d3c5e39b08e79621d9e4eb191079f9ed2a4d106 (patch)
treea855077560c5892d2fa2b39d57ede52a57450833 /channels
parent46e43a6a90cb158cbc0cfb813c5207603bfdeef3 (diff)
declare function_sipppeer as static (issue #6466)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@9758 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_sip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 2efb77928..d896fa9dd 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -9340,7 +9340,7 @@ static struct ast_custom_function checksipdomain_function = {
};
/*! \brief function_sippeer: ${SIPPEER()} Dialplan function - reads peer data */
-int function_sippeer(struct ast_channel *chan, char *cmd, char *data, char *buf, size_t len)
+static int function_sippeer(struct ast_channel *chan, char *cmd, char *data, char *buf, size_t len)
{
struct sip_peer *peer;
char *colname;