| 943 | } |
| 944 | |
| 945 | void addReplyNull(client *c) { |
| 946 | if (c->resp == 2) { |
| 947 | addReplyProto(c,"$-1\r\n",5); |
| 948 | } else { |
| 949 | addReplyProto(c,"_\r\n",3); |
| 950 | } |
| 951 | } |
| 952 | |
| 953 | void addReplyBool(client *c, int b) { |
| 954 | if (c->resp == 2) { |
no test coverage detected