Commit:    0be6ecb8621e32f6bb039dd178f4db17220de6e9
Author:    Manuel Mausz <man...@mausz.at>         Thu, 5 Sep 2013 01:19:00 +0200
Parents:   8ca43527e8b7e076779560f1472518bd1fe4d6ca
Branches:  master

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

Log:
fix indention

Changed paths:
  M  ext/hash/hash_gost.c


Diff:
diff --git a/ext/hash/hash_gost.c b/ext/hash/hash_gost.c
index 7546c8d..da65bb5 100644
--- a/ext/hash/hash_gost.c
+++ b/ext/hash/hash_gost.c
@@ -243,13 +243,13 @@ static inline void GostTransform(PHP_GOST_CTX *context, 
const unsigned char inpu
 PHP_HASH_API void PHP_GOSTInit(PHP_GOST_CTX *context)
 {
        memset(context, 0, sizeof(*context));
-    context->tables = &tables_test;
+       context->tables = &tables_test;
 }
 
 PHP_HASH_API void PHP_GOSTInitCrypto(PHP_GOST_CTX *context)
 {
-    PHP_GOSTInit(context);
-    context->tables = &tables_crypto;
+       PHP_GOSTInit(context);
+       context->tables = &tables_crypto;
 }
 
 static const php_hash_uint32 MAX32 = 0xffffffffLU;


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

Reply via email to