From: Martin Pycko Date: Tue, 1 Apr 2003 17:03:18 +0000 (+0000) Subject: Fix "typo" with authorization X-Git-Tag: 0.4.0~102 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6b4c9fca5935415eeef8a5d39ea9504b3e1ab26d;p=thirdparty%2Fasterisk.git Fix "typo" with authorization git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@736 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_iax2.c b/channels/chan_iax2.c index ce575380a5..1ea30e0739 100755 --- a/channels/chan_iax2.c +++ b/channels/chan_iax2.c @@ -4630,7 +4630,7 @@ static int get_auth_methods(char *value) if (strstr(value, "md5")) methods |= IAX_AUTH_MD5; if (strstr(value, "plaintext")) - methods |= IAX_AUTH_RSA; + methods |= IAX_AUTH_PLAINTEXT; return methods; }