Commit:    9d3630b5dc8fa066dc4212ead2fffc8635f5bc0a
Author:    Anthony Ferrara <ircmax...@gmail.com>         Thu, 5 Jul 2012 
17:58:19 -0400
Parents:   ee7e7998410c8fd5bd2183b1af375622f0ca8e02
Branches:  master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=9d3630b5dc8fa066dc4212ead2fffc8635f5bc0a

Log:
Cleanup whitespace issues

Changed paths:
  M  ext/standard/password.c


Diff:
diff --git a/ext/standard/password.c b/ext/standard/password.c
index 9be6f8c..2f1ebb5 100644
--- a/ext/standard/password.c
+++ b/ext/standard/password.c
@@ -168,9 +168,9 @@ PHP_FUNCTION(password_get_info)
        char *hash;
        zval *options;
 
-    if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &hash, 
&hash_len) == FAILURE) {
-        RETURN_NULL();
-    }
+       if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &hash, 
&hash_len) == FAILURE) {
+               RETURN_NULL();
+       }
 
        ALLOC_INIT_ZVAL(options);
        array_init(options);
@@ -202,8 +202,8 @@ PHP_FUNCTION(password_needs_rehash)
        zval **option_buffer;
        
        if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sl|H", &hash, 
&hash_len, &new_algo, &options) == FAILURE) {
-        RETURN_NULL();
-    }
+               RETURN_NULL();
+       }
        algo = php_password_determine_algo(hash, hash_len);
        
        if (algo != new_algo) {


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to