From 7cb8481053cae4b41b71c6ac6ea2b2b5af360ba2 Mon Sep 17 00:00:00 2001 From: antirez Date: Thu, 15 Oct 2015 10:04:35 +0200 Subject: [PATCH] Move end-comment of handshake states. For an error I missed the last handshake state. Related to issue #2813. --- src/redis.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/redis.h b/src/redis.h index 34692a95..8e63f6c5 100644 --- a/src/redis.h +++ b/src/redis.h @@ -281,8 +281,8 @@ typedef long long mstime_t; /* millisecond time type. */ #define REDIS_REPL_SEND_CAPA 8 /* Send REPLCONF capa */ #define REDIS_REPL_RECEIVE_CAPA 9 /* Wait for REPLCONF reply */ #define REDIS_REPL_SEND_PSYNC 10 /* Send PSYNC */ -/* --- End of handshake states --- */ #define REDIS_REPL_RECEIVE_PSYNC 11 /* Wait for PSYNC reply */ +/* --- End of handshake states --- */ #define REDIS_REPL_TRANSFER 12 /* Receiving .rdb from master */ #define REDIS_REPL_CONNECTED 13 /* Connected to master */