diff options
author | Felipe Pena <felipe@php.net> | 2008-04-01 18:48:11 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2008-04-01 18:48:11 +0000 |
commit | 378dacf99f5b01309ca876201f19928ab5ed0818 (patch) | |
tree | ec658387e988a1a55f771ce7babef5418956f3a3 /ext/imap/php_imap.c | |
parent | fc1ad96953fcca69dde5e72f15d61149deb5876e (diff) | |
download | php-git-378dacf99f5b01309ca876201f19928ab5ed0818.tar.gz |
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 b39f859932..974c23fab5 100644 --- a/ext/imap/php_imap.c +++ b/ext/imap/php_imap.c @@ -799,7 +799,7 @@ static void php_imap_do_open(INTERNAL_FUNCTION_PARAMETERS, int persistent) if (myargc == 5) { convert_to_long_ex(retries); if (retries < 0) { - php_error_docref(NULL TSRMLS_CC, E_WARNING ,"Retries must be greater or eqaul to 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)); } |