Fix "typo" with authorization

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@736 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Martin Pycko 2003-04-01 17:03:18 +00:00
parent 6b466cfcf4
commit 6b4c9fca59
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}