Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
a68e3d4c
Commit
a68e3d4c
authored
Oct 17, 2012
by
Geoff Garside
Committed by
antirez
Jul 08, 2013
Browse files
Cleanup main() and BACKTRACE mistaken pulled while rebasing.
parent
1ca4008d
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/redis.c
View file @
a68e3d4c
...
@@ -2975,6 +2975,8 @@ int main(int argc, char **argv) {
...
@@ -2975,6 +2975,8 @@ int main(int argc, char **argv) {
}
}
if
(
server
.
ipfd_count
>
0
)
if
(
server
.
ipfd_count
>
0
)
redisLog
(
REDIS_NOTICE
,
"The server is now ready to accept connections on port %d"
,
server
.
port
);
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
)
if
(
server
.
sofd
>
0
)
redisLog
(
REDIS_NOTICE
,
"The server is now ready to accept connections at %s"
,
server
.
unixsocket
);
redisLog
(
REDIS_NOTICE
,
"The server is now ready to accept connections at %s"
,
server
.
unixsocket
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment