diff options
| author | Florian Westphal <fw@strlen.de> | 2007-12-13 01:30:16 +0000 |
|---|---|---|
| committer | Florian Westphal <fw@strlen.de> | 2007-12-13 01:30:16 +0000 |
| commit | f99f9a8f02390e8d49dbaad478678a0427872f5e (patch) | |
| tree | 55c42a70ca89aaa442eb7f94cc5d440ea7ffc710 | |
| parent | 4715ccf9ca7509795295a5d2ac5aab5d9998f06a (diff) | |
| download | ngircd-f99f9a8f02390e8d49dbaad478678a0427872f5e.tar.gz ngircd-f99f9a8f02390e8d49dbaad478678a0427872f5e.zip | |
Fix format arg: ListenAddress was printed instead of Bind address.
| -rw-r--r-- | src/ngircd/conn.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ngircd/conn.c b/src/ngircd/conn.c index 7cd7a636..6042db2f 100644 --- a/src/ngircd/conn.c +++ b/src/ngircd/conn.c @@ -17,7 +17,7 @@ #include "portab.h" #include "io.h" -static char UNUSED id[] = "$Id: conn.c,v 1.219 2007/12/13 01:05:01 fw Exp $"; +static char UNUSED id[] = "$Id: conn.c,v 1.220 2007/12/13 01:30:16 fw Exp $"; #include "imp.h" #include <assert.h> @@ -1394,7 +1394,7 @@ New_Server( int Server , struct in_addr *dest) InitSinaddr(&local_addr, 0); local_addr.sin_addr = Conf_Server[Server].bind_addr; if (bind(new_sock, (struct sockaddr *)&local_addr, (socklen_t)sizeof(local_addr))) - Log(LOG_WARNING, "Can't bind socket to %s: %s!", Conf_ListenAddress, strerror( errno )); + Log(LOG_WARNING, "Can't bind socket to %s: %s!", inet_ntoa(Conf_Server[Server].bind_addr), strerror( errno )); res = connect(new_sock, (struct sockaddr *)&new_addr, (socklen_t)sizeof(new_addr)); |