[PHP-DEV] CVS update: php3/functions From: jim (php-dev <email protected>)
Date: 11/23/98

Date: Monday November 23, 1998 @ 0:52
Author: jim

Update of /repository/php3/functions
In directory asf:/u2/tmp/cvs-serv26662/functions

Modified Files:
        imap.c
Log Message:
Don't call mail_link(&mbxdriver) twice on Win32. Fixes bug #898.

Index: php3/functions/imap.c
diff -c php3/functions/imap.c:1.48 php3/functions/imap.c:1.49
*** php3/functions/imap.c:1.48 Wed Nov 18 16:23:07 1998
--- php3/functions/imap.c Mon Nov 23 00:52:03 1998
***************
*** 31,37 ****
     | Rasmus Lerdorf <rasmus <email protected>> |
     +----------------------------------------------------------------------+
   */
! /* $Id: imap.c,v 1.48 1998/11/18 21:23:07 ssb Exp $ */
  
  #define IMAP41
  
--- 31,37 ----
     | Rasmus Lerdorf <rasmus <email protected>> |
     +----------------------------------------------------------------------+
   */
! /* $Id: imap.c,v 1.49 1998/11/23 05:52:03 jim Exp $ */
  
  #define IMAP41
  
***************
*** 221,229 ****
  
  int imap_init(INIT_FUNC_ARGS)
  {
! #if WIN32|WINNT
! mail_link (&mbxdriver); /* link in the mbox driver */
! #else
          mail_link(&unixdriver); /* link in the unix driver */
  #endif
          mail_link (&imapdriver); /* link in the imap driver */
--- 221,227 ----
  
  int imap_init(INIT_FUNC_ARGS)
  {
! #if !(WIN32|WINNT)
          mail_link(&unixdriver); /* link in the unix driver */
  #endif
          mail_link (&imapdriver); /* link in the imap driver */

--
PHP Development Mailing List   http://www.php.net/
To unsubscribe send an empty message to php-dev-unsubscribe <email protected>
For help: php-dev-help <email protected>