From: antirez <antirez@gmail.com>
Date: Thu, 21 Jun 2012 12:25:53 +0000 (+0200)
Subject: Fixed comment typo into time_independent_strcmp().
X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/b3f28b90d29f28458d4cb00382ff988a98750d05

Fixed comment typo into time_independent_strcmp().
---

diff --git a/src/redis.c b/src/redis.c
index ec313fbf..3b7af456 100644
--- a/src/redis.c
+++ b/src/redis.c
@@ -1698,7 +1698,7 @@ int prepareForShutdown(int flags) {
 
 /*================================== Commands =============================== */
 
-/* Return 0 if strings are the same, 1 if they are not.
+/* Return zero if strings are the same, non-zero if they are not.
  * The comparison is performed in a way that prevents an attacker to obtain
  * information about the nature of the strings just monitoring the execution
  * time of the function.