Browse Source

Fixed bug #36496

experimental/5.2-WITH_DRCP
Edin Kadribasic 20 years ago
parent
commit
fee1ef3463
  1. 1
      NEWS
  2. 2
      ext/imap/php_imap.c

1
NEWS

@ -31,6 +31,7 @@ PHP NEWS
- Fixed bug #39836 (SplObjectStorage empty after unserialize). (Marcus)
- Fixed bug #39322 (proc_terminate() destroys process resource). (Nuno)
- Fixed bug #37799 (ftp_ssl_connect() falls back to non-ssl connection). (Nuno)
- Fixed bug #36496 (SSL support in imap_open() not working on Windows). (Edin)
- Fixed bug #34794 (proc_close() hangs when used with two processes).
(jdolecek at netbsd dot org, Nuno)

2
ext/imap/php_imap.c

@ -475,10 +475,10 @@ PHP_MINIT_FUNCTION(imap)
auth_link(&auth_gss); /* link in the gss authenticator */
#endif
auth_link(&auth_pla); /* link in the plain authenticator */
#endif
#ifdef HAVE_IMAP_SSL
ssl_onceonlyinit ();
#endif
#endif
/* lets allow NIL */

Loading…
Cancel
Save