commit - dd3a3bc6039bc1fd1a89ffb834f08665c8035b6a
commit + 00ab67dcdb96f64e8ba1951bfb88e49372576990
blob - 530be7cfec8d4288919f5d6aa97a0859b42cf8f2
blob + 5e672ff3f3d86a2aefd39d6ead5369421f1a20f2
--- src/ngircd/conn.c
+++ src/ngircd/conn.c
#include "portab.h"
#include "io.h"
-static char UNUSED id[] = "$Id: conn.c,v 1.195 2006/05/10 21:24:01 alex Exp $";
+static char UNUSED id[] = "$Id: conn.c,v 1.196 2006/05/12 11:53:04 alex Exp $";
#include "imp.h"
#include <assert.h>
if( ! Init_Socket( sock )) return -1;
- if (bind(sock, (struct sockaddr *)&addr, (int)sizeof(addr)) != 0) {
+ if (bind(sock, (struct sockaddr *)&addr, (socklen_t)sizeof(addr)) != 0) {
Log( LOG_CRIT, "Can't bind socket: %s!", strerror( errno ));
close( sock );
return -1;