From: chas w. <ch...@us...> - 2011-01-24 16:21:48
|
Update of /cvsroot/linux-atm/linux-atm/src/sigd In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv22549/src/sigd Modified Files: Tag: V2_5_3 atmsigd.conf.4 io.c Log Message: integrate 000-debian_16.patch patch from openwrt socket int to socket_t conversion and some warning cleanups. also corrects some errors in the man page macros. Index: atmsigd.conf.4 =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/sigd/atmsigd.conf.4,v retrieving revision 1.2 retrieving revision 1.2.8.1 diff -C2 -d -r1.2 -r1.2.8.1 *** atmsigd.conf.4 9 Oct 2001 22:33:07 -0000 1.2 --- atmsigd.conf.4 24 Jan 2011 16:21:39 -0000 1.2.8.1 *************** *** 126,130 **** If an option is specified in \fBatmsigd.conf\fP and on the command line, the command line has priority. ! .COMPATIBILITY Certain options used by past versions of \fBatmsigd\fP but no longer documented on the man page are still recognized and supported, but they also yield a --- 126,130 ---- If an option is specified in \fBatmsigd.conf\fP and on the command line, the command line has priority. ! .SH COMPATIBILITY Certain options used by past versions of \fBatmsigd\fP but no longer documented on the man page are still recognized and supported, but they also yield a Index: io.c =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/sigd/io.c,v retrieving revision 1.2 retrieving revision 1.2.8.1 diff -C2 -d -r1.2 -r1.2.8.1 *** io.c 9 Oct 2001 22:33:07 -0000 1.2 --- io.c 24 Jan 2011 16:21:39 -0000 1.2.8.1 *************** *** 356,360 **** if (bind(s,(struct sockaddr *) &addr,sizeof(addr)) < 0) error = errno; else { ! int size; size = sizeof(addr); --- 356,360 ---- if (bind(s,(struct sockaddr *) &addr,sizeof(addr)) < 0) error = errno; else { ! socklen_t size; size = sizeof(addr); |