From a68e3d4c6ae0079c7aed3f11510e50e2dcb8f7cb Mon Sep 17 00:00:00 2001 From: Geoff Garside Date: Wed, 17 Oct 2012 23:26:30 +0100 Subject: [PATCH] Cleanup main() and BACKTRACE mistaken pulled while rebasing. --- src/redis.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/redis.c b/src/redis.c index 3b522bb1..e19fbf72 100644 --- a/src/redis.c +++ b/src/redis.c @@ -2975,6 +2975,8 @@ int main(int argc, char **argv) { } if (server.ipfd_count > 0) redisLog(REDIS_NOTICE,"The server is now ready to accept connections on port %d", server.port); + if (server.ip6fd > 0) + redisLog(REDIS_NOTICE,"The server is now ready to accept IPv6 connections on port %d", server.port6); if (server.sofd > 0) redisLog(REDIS_NOTICE,"The server is now ready to accept connections at %s", server.unixsocket); }