From c303e37b2085e683f4917c819b7189793961e83a Mon Sep 17 00:00:00 2001 From: russell Date: Mon, 23 Jul 2007 14:02:21 +0000 Subject: [PATCH] Remove an unused function to resolve a compiler warning git-svn-id: http://svn.digium.com/svn/asterisk/trunk@76524 f38db490-d61c-443f-a65b-d21fe96a405b --- channels/chan_sip.c | 10 ---------- 1 file changed, 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) {