From cac4bae11ae9f5ce770220ce1f8a70f5033866f4 Mon Sep 17 00:00:00 2001 From: antirez Date: Thu, 24 Apr 2014 21:43:16 +0200 Subject: [PATCH] AE_ERR -> ANET_ERR in acceptUnixHandler(). No actual changes since the value is the same. --- src/networking.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/networking.c b/src/networking.c index c9d211f38..58a8c1f30 100644 --- a/src/networking.c +++ b/src/networking.c @@ -602,7 +602,7 @@ void acceptUnixHandler(aeEventLoop *el, int fd, void *privdata, int mask) { REDIS_NOTUSED(privdata); cfd = anetUnixAccept(server.neterr, fd); - if (cfd == AE_ERR) { + if (cfd == ANET_ERR) { redisLog(REDIS_WARNING,"Accepting client connection: %s", server.neterr); return; } -- GitLab