repo: ngircd
action: commit
revision: 
path_from: 
revision_from: 4715ccf9ca7509795295a5d2ac5aab5d9998f06a:
path_to: 
revision_to: 
git.thebackupbox.net
ngircd
git clone git://git.thebackupbox.net/ngircd
commit 4715ccf9ca7509795295a5d2ac5aab5d9998f06a
Author: Florian Westphal 
Date:   Thu Dec 13 01:05:01 2007 +0000

    Fix format string in error path: didn't print strerror(errno)

diff --git a/src/ngircd/conn.c b/src/ngircd/conn.c
index 46a6ec298692ad156c6323507f6822b0a5183078..
index ..7cd7a6361a0578de762c8fd8e07b40d358b9e6a4 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.218 2007/12/07 21:19:01 fw Exp $";
+static char UNUSED id[] = "$Id: conn.c,v 1.219 2007/12/13 01:05:01 fw Exp $";

 #include "imp.h"
 #include 
@@ -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!", Conf_ListenAddress, strerror( errno ));
+		Log(LOG_WARNING, "Can't bind socket to %s: %s!", Conf_ListenAddress, strerror( errno ));

 	res = connect(new_sock, (struct sockaddr *)&new_addr,
 			(socklen_t)sizeof(new_addr));

-----END OF PAGE-----