diff options
author | Pierre Joye <pajoye@php.net> | 2009-04-28 08:29:55 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2009-04-28 08:29:55 +0000 |
commit | efb0b8bf5451940f0fdb23a75ec635bb57bf3960 (patch) | |
tree | 686cddc65d4f6b8d6bc5455a4678f37b8eb694b0 /ext/imap/php_imap.c | |
parent | d4e6d96396338db2308a2fc3478f78f0b81b01cf (diff) | |
download | php-git-efb0b8bf5451940f0fdb23a75ec635bb57bf3960.tar.gz |
- space to tabs
- CS
Diffstat (limited to 'ext/imap/php_imap.c')
-rw-r--r-- | ext/imap/php_imap.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/imap/php_imap.c b/ext/imap/php_imap.c index 98daaa9bd5..a71301e540 100644 --- a/ext/imap/php_imap.c +++ b/ext/imap/php_imap.c @@ -1530,11 +1530,11 @@ PHP_FUNCTION(imap_close) if (argc == 2) { flags = options; - /* Check that flags is exactly equal to PHP_EXPUNGE or zero */ - if (flags && ((flags & ~PHP_EXPUNGE) != 0)) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "invalid value for the flags parameter"); - RETURN_FALSE; - } + /* Check that flags is exactly equal to PHP_EXPUNGE or zero */ + if (flags && ((flags & ~PHP_EXPUNGE) != 0)) { + php_error_docref(NULL TSRMLS_CC, E_WARNING, "invalid value for the flags parameter"); + RETURN_FALSE; + } /* Do the translation from PHP's internal PHP_EXPUNGE define to c-client's CL_EXPUNGE */ if (flags & PHP_EXPUNGE) { |