diff options
author | foobar <sniper@php.net> | 2001-05-27 18:38:59 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2001-05-27 18:38:59 +0000 |
commit | d1735d5ed51aa03e2dd38facfed12e58a036932a (patch) | |
tree | 949b295506395a18b6a94036219f93e8e8dd1cc4 /ext/imap/php_imap.c | |
parent | ae9da3a9c1201c738440a8323589125a1c5b7915 (diff) | |
download | php-git-d1735d5ed51aa03e2dd38facfed12e58a036932a.tar.gz |
This is not needed. ssl_onceonlyinit() is enough.
Diffstat (limited to 'ext/imap/php_imap.c')
-rw-r--r-- | ext/imap/php_imap.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/imap/php_imap.c b/ext/imap/php_imap.c index 914d6cc8a1..05c233db2e 100644 --- a/ext/imap/php_imap.c +++ b/ext/imap/php_imap.c @@ -451,10 +451,9 @@ PHP_MINIT_FUNCTION(imap) mail_link(&newsdriver); /* link in the news driver */ mail_link(&philedriver); /* link in the phile driver */ auth_link(&auth_log); /* link in the log authenticator */ - auth_link(&auth_md5); /* link in the cram-md5 authenticator */ + auth_link(&auth_md5); /* link in the cram-md5 authenticator */ #ifdef HAVE_IMAP_SSL ssl_onceonlyinit (); - auth_link (&auth_ssl); /* link in the ssl authenticator */ #endif #endif mail_link(&dummydriver); /* link in the dummy driver */ |