Date: 11/23/98
- Next message: Bug Database: "[PHP-DEV] Bug #898 Updated: Couldn't open imap stream with imap_open()"
- Previous message: Bug Database: "[PHP-DEV] Bug #918 Updated: get_meta_tags is case-sensitive"
- Next in thread: jim: "[PHP-DEV] CVS update: php3/functions"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
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>
- Next message: Bug Database: "[PHP-DEV] Bug #898 Updated: Couldn't open imap stream with imap_open()"
- Previous message: Bug Database: "[PHP-DEV] Bug #918 Updated: get_meta_tags is case-sensitive"
- Next in thread: jim: "[PHP-DEV] CVS update: php3/functions"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

