| 784 | } |
| 785 | |
| 786 | void addReplyNull(client *c) { |
| 787 | if (c->resp == 2) { |
| 788 | addReplyProto(c,"$-1\r\n",5); |
| 789 | } else { |
| 790 | addReplyProto(c,"_\r\n",3); |
| 791 | } |
| 792 | } |
| 793 | |
| 794 | void addReplyBool(client *c, int b) { |
| 795 | if (c->resp == 2) { |
no test coverage detected