From bdff161e8760b35f9afd575bb6176bc2b272d242 Mon Sep 17 00:00:00 2001 From: Greg Beaver Date: Sat, 24 Nov 2007 04:09:01 +0000 Subject: [PATCH] WS (spaces instead of tabs) --- ext/phar/phar_object.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ext/phar/phar_object.c b/ext/phar/phar_object.c index 7ef53ad000..0d6fd132b9 100755 --- a/ext/phar/phar_object.c +++ b/ext/phar/phar_object.c @@ -151,7 +151,7 @@ PHP_METHOD(Phar, canCompress) case PHAR_ENT_COMPRESSED_BZ2: #if HAVE_BZ2 - if (zend_hash_exists(&module_registry, "bz2", sizeof("bz2"))) { + if (zend_hash_exists(&module_registry, "bz2", sizeof("bz2"))) { RETURN_TRUE; } else { RETURN_FALSE; @@ -596,7 +596,7 @@ PHP_METHOD(Phar, getSupportedCompression) add_next_index_stringl(return_value, "GZ", 2, 1); #endif #if !HAVE_BZ2 - if (zend_hash_exists(&module_registry, "bz2", sizeof("bz2"))) { + if (zend_hash_exists(&module_registry, "bz2", sizeof("bz2"))) { add_next_index_stringl(return_value, "BZIP2", 5, 1); } #endif @@ -668,7 +668,7 @@ static int phar_test_compression(void *pDest, void *argument TSRMLS_DC) /* {{{ * return ZEND_HASH_APPLY_KEEP; } #if !HAVE_BZ2 - if (zend_hash_exists(&module_registry, "bz2", sizeof("bz2"))) { + if (zend_hash_exists(&module_registry, "bz2", sizeof("bz2"))) { if (entry->flags & PHAR_ENT_COMPRESSED_BZ2) { *(int *) argument = 0; } -- 2.50.1