diff options
| author | Amir Mohammad Saied <amirsaied@gmail.com> | 2010-12-02 22:00:21 +0330 |
|---|---|---|
| committer | Amir Mohammad Saied <amirsaied@gmail.com> | 2010-12-02 22:00:21 +0330 |
| commit | 822efe2ac3174685ec26d3e01e223fe25ed77aa2 (patch) | |
| tree | bef803f923db58ef2919087f3a7a2edd7eb560ae | |
| parent | 7684d556bd7250786eb6fd38c656368530903677 (diff) | |
| download | hiredict-822efe2ac3174685ec26d3e01e223fe25ed77aa2.tar.xz | |
Redis command getting executed is PING, PONG is actually the expected answer
| -rw-r--r-- | example.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -17,7 +17,7 @@ int main(void) { /* PING server */ reply = redisCommand(c,"PING"); - printf("PONG: %s\n", reply->str); + printf("PING: %s\n", reply->str); freeReplyObject(reply); /* Set a key */ |
