aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-02-13 17:46:34 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-02-13 17:46:34 +0000
commitdd08051ba92b9e9af94645ae69a875030ade8446 (patch)
treea855077560c5892d2fa2b39d57ede52a57450833
parent682464a5b8dcfb34894c3a82ac6f1bf86c100f7e (diff)
declare function_sipppeer as static (issue #6466)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@9758 f38db490-d61c-443f-a65b-d21fe96a405b
-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;