display listening port in log

This commit is contained in:
Daniel Stenberg 2005-04-27 12:27:23 +00:00
parent d5403f3a5b
commit 3bcfe678ab
1 changed files with 2 additions and 2 deletions

View File

@ -843,13 +843,13 @@ int main(int argc, char *argv[])
else
fprintf(stderr, "Couldn't write pid file\n");
logmsg("Running IPv%d version",
logmsg("Running IPv%d version on port %d",
#ifdef ENABLE_IPV6
(use_ipv6?6:4)
#else
4
#endif
);
, port );
/* start accepting connections */
listen(sock, 5);