From: Olle Johansson Date: Sun, 6 Jul 2008 08:43:08 +0000 (+0000) Subject: Remove comments that doesn't make sense. The deprecation of type=user will come at... X-Git-Tag: 1.6.2.0-beta1~1761 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ccb718b560dbb5b363168abad7f1c9bc4696ce70;p=thirdparty%2Fasterisk.git Remove comments that doesn't make sense. The deprecation of type=user will come at a later stage, as indicated by previous commit message git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@128381 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 9d3d5de10b..f6253d61c1 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -21379,10 +21379,8 @@ static int reload_config(enum channelreloadreason reason) } else { int is_peer = 0; if (!strcasecmp(utype, "user")) { - ast_log(LOG_WARNING, "type=user is deprecated. Please use type=peer only."); is_peer = 1; } else if (!strcasecmp(utype, "friend")) { - ast_log(LOG_WARNING, "type=friend is deprecated. Please use type=peer only."); is_peer = 1; } else if (!strcasecmp(utype, "peer")) is_peer = 2;