summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2007-07-23 14:02:21 +0000
committerRussell Bryant <russell@russellbryant.com>2007-07-23 14:02:21 +0000
commit83609770c1040d4e1fbce0b621ac539a1d283cd2 (patch)
tree5b5184db7be3171126c7d04dfa3ecb4283df7d43 /channels
parent91c3d90e8f1205e3087d5ce2c3eeae07893b1c17 (diff)
Remove an unused function to resolve a compiler warning
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@76524 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_sip.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 9d730c460..1856fb421 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -1550,7 +1550,6 @@ static char *complete_sip_registered_peer(const char *word, int state, int flags
static char *complete_sip_show_history(const char *line, const char *word, int pos, int state);
static char *complete_sip_show_peer(const char *line, const char *word, int pos, int state);
static char *complete_sip_unregister(const char *line, const char *word, int pos, int state);
-static char *complete_sip_debug_peer(const char *line, const char *word, int pos, int state);
static char *complete_sip_user(const char *word, int state, int flags2);
static char *complete_sip_show_user(const char *line, const char *word, int pos, int state);
static char *complete_sipnotify(const char *line, const char *word, int pos, int state);
@@ -11611,15 +11610,6 @@ static char *complete_sip_unregister(const char *line, const char *word, int pos
return NULL;
}
-/*! \brief Support routine for 'sip debug peer' CLI */
-static char *complete_sip_debug_peer(const char *line, const char *word, int pos, int state)
-{
- if (pos == 4)
- return complete_sip_peer(word, state, 0);
-
- return NULL;
-}
-
/*! \brief Do completion on user name */
static char *complete_sip_user(const char *word, int state, int flags2)
{