]> granicus.if.org Git - php/commitdiff
- space to tabs
authorPierre Joye <pajoye@php.net>
Tue, 28 Apr 2009 08:29:55 +0000 (08:29 +0000)
committerPierre Joye <pajoye@php.net>
Tue, 28 Apr 2009 08:29:55 +0000 (08:29 +0000)
- CS

ext/imap/php_imap.c

index 98daaa9bd5b2ad33cd75e336032a45244205f3f0..a71301e54006abbde71c8b2934b444d5f8a59d2c 100644 (file)
@@ -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) {