diff options
author | Thies C. Arntzen <thies@php.net> | 2001-08-04 10:50:55 +0000 |
---|---|---|
committer | Thies C. Arntzen <thies@php.net> | 2001-08-04 10:50:55 +0000 |
commit | 402f91fa2d6f7cb4bd7cba213641e35d86092090 (patch) | |
tree | a9b52d6a2f232111aec78b8fe0860564097d4c16 | |
parent | 96aab6aed446e9679f0a87fd053b83df1434d1a5 (diff) | |
download | php-git-402f91fa2d6f7cb4bd7cba213641e35d86092090.tar.gz |
calling mail_open() causes a SEGFAULT when using imap-2000c. mail_open(0,"",0);
seems to work.
-rw-r--r-- | ext/imap/config.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/imap/config.m4 b/ext/imap/config.m4 index d3a4252f27..0564235f4a 100644 --- a/ext/imap/config.m4 +++ b/ext/imap/config.m4 @@ -92,7 +92,7 @@ AC_DEFUN(PHP_IMAP_SSL_CHK, [ void mm_expunged(void){} char mail_open(); int main() { - mail_open(); + mail_open(0,"",0); return 0; } ],,[ |