diff options
author | Felipe Pena <felipe@php.net> | 2008-04-17 11:08:13 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2008-04-17 11:08:13 +0000 |
commit | 08d56fca4c919aaca638180aa3773092eede3887 (patch) | |
tree | 79de8d8f9a4026d23c8fb3c691800e34a3c8384d /ext/imap/php_imap.c | |
parent | fcaa1c6d86b4a182913ada0429485fc9eb3a95bc (diff) | |
download | php-git-08d56fca4c919aaca638180aa3773092eede3887.tar.gz |
- Fixed typo
Diffstat (limited to 'ext/imap/php_imap.c')
-rw-r--r-- | ext/imap/php_imap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/imap/php_imap.c b/ext/imap/php_imap.c index cab5f7e5b6..2e41b477e3 100644 --- a/ext/imap/php_imap.c +++ b/ext/imap/php_imap.c @@ -798,7 +798,7 @@ static void php_imap_do_open(INTERNAL_FUNCTION_PARAMETERS, int persistent) #ifdef SET_MAXLOGINTRIALS if (myargc == 5) { convert_to_long_ex(retries); - if (retries < 0) { + if (Z_LVAL_PP(retries) < 0) { php_error_docref(NULL TSRMLS_CC, E_WARNING ,"Retries must be greater or equal to 0"); } else { mail_parameters(NIL, SET_MAXLOGINTRIALS, (void *) Z_LVAL_PP(retries)); |