| 756 | } |
| 757 | |
| 758 | static void cliPrintContextError(void) { |
| 759 | if (context == NULL) return; |
| 760 | fprintf(stderr,"Error: %s\n",context->errstr); |
| 761 | } |
| 762 | |
| 763 | static int isInvalidateReply(redisReply *reply) { |
| 764 | return reply->type == REDIS_REPLY_PUSH && reply->elements == 2 && |
no outgoing calls
no test coverage detected