mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-23 00:28:26 -05:00
AE_ERR -> ANET_ERR in acceptUnixHandler().
No actual changes since the value is the same.
This commit is contained in:
parent
c3f85c0107
commit
cac4bae11a
@ -602,7 +602,7 @@ void acceptUnixHandler(aeEventLoop *el, int fd, void *privdata, int mask) {
|
|||||||
REDIS_NOTUSED(privdata);
|
REDIS_NOTUSED(privdata);
|
||||||
|
|
||||||
cfd = anetUnixAccept(server.neterr, fd);
|
cfd = anetUnixAccept(server.neterr, fd);
|
||||||
if (cfd == AE_ERR) {
|
if (cfd == ANET_ERR) {
|
||||||
redisLog(REDIS_WARNING,"Accepting client connection: %s", server.neterr);
|
redisLog(REDIS_WARNING,"Accepting client connection: %s", server.neterr);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user