File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -4027,7 +4027,7 @@ void clusterCommand(redisClient *c) {
4027
4027
/* CLUSTER BUMPEPOCH */
4028
4028
int retval = clusterBumpConfigEpochWithoutConsensus ();
4029
4029
sds reply = sdscatprintf (sdsempty (),"+%s %llu\r\n" ,
4030
- (retval == C_OK ) ? "BUMPED" : "STILL" ,
4030
+ (retval == REDIS_OK ) ? "BUMPED" : "STILL" ,
4031
4031
(unsigned long long ) myself -> configEpoch );
4032
4032
addReplySds (c ,reply );
4033
4033
} else if (!strcasecmp (c -> argv [1 ]-> ptr ,"info" ) && c -> argc == 2 ) {
@@ -4645,7 +4645,7 @@ void migrateCommand(redisClient *c) {
4645
4645
}
4646
4646
4647
4647
/* Sanity check */
4648
- if (getLongFromObjectOrReply (c ,c -> argv [5 ],& timeout ,NULL ) != REDIS__OK ||
4648
+ if (getLongFromObjectOrReply (c ,c -> argv [5 ],& timeout ,NULL ) != REDIS_OK ||
4649
4649
getLongFromObjectOrReply (c ,c -> argv [4 ],& dbid ,NULL ) != REDIS_OK )
4650
4650
{
4651
4651
return ;
You can’t perform that action at this time.
0 commit comments