]> git.saurik.com Git - redis.git/blobdiff - src/networking.c
Rename bstate to bpop.
[redis.git] / src / networking.c
index 530e2ca87382df90f2e2f131453ce8300f3e8766..7d14ac53f18bfc8c60ef457ff3b4c6383e3d59da 100644 (file)
@@ -41,10 +41,10 @@ redisClient *createClient(int fd) {
     c->reply = listCreate();
     listSetFreeMethod(c->reply,decrRefCount);
     listSetDupMethod(c->reply,dupClientReplyValue);
-    c->bstate.keys = NULL;
-    c->bstate.count = 0;
-    c->bstate.timeout = 0;
-    c->bstate.target = NULL;
+    c->bpop.keys = NULL;
+    c->bpop.count = 0;
+    c->bpop.timeout = 0;
+    c->bpop.target = NULL;
     c->io_keys = listCreate();
     c->watched_keys = listCreate();
     listSetFreeMethod(c->io_keys,decrRefCount);
@@ -679,7 +679,7 @@ void closeTimedoutClients(void) {
             redisLog(REDIS_VERBOSE,"Closing idle client");
             freeClient(c);
         } else if (c->flags & REDIS_BLOCKED) {
-            if (c->bstate.timeout != 0 && c->bstate.timeout < now) {
+            if (c->bpop.timeout != 0 && c->bpop.timeout < now) {
                 addReply(c,shared.nullmultibulk);
                 unblockClientWaitingData(c);
             }