diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2006-12-17 18:22:53 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2006-12-17 18:22:53 +0000 |
commit | 24cc05dc0968f4785a88f258259d72508f2c96f6 (patch) | |
tree | 882d80dfd99d4a9a0a48c90eac9849b904d68c2c /ext/imap/php_imap.c | |
parent | 93a606a192c41a88173f67a0a4601f8ce653b80e (diff) | |
download | php-git-24cc05dc0968f4785a88f258259d72508f2c96f6.tar.gz |
Fixed bug #39779 (Enable AUTH PLAIN mechanism in underlaying libc-client).
Diffstat (limited to 'ext/imap/php_imap.c')
-rw-r--r-- | ext/imap/php_imap.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/imap/php_imap.c b/ext/imap/php_imap.c index f47649b5e4..c3c1f76c5f 100644 --- a/ext/imap/php_imap.c +++ b/ext/imap/php_imap.c @@ -471,6 +471,7 @@ PHP_MINIT_FUNCTION(imap) #if HAVE_IMAP_KRB && defined(HAVE_IMAP_AUTH_GSS) auth_link(&auth_gss); /* link in the gss authenticator */ #endif + auth_link(&auth_pla); /* link in the plain authenticator */ #ifdef HAVE_IMAP_SSL ssl_onceonlyinit (); |