From: Stephen D. <sd...@us...> - 2005-06-10 17:59:08
|
Update of /cvsroot/naviserver/naviserver/nssock In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27218/nssock Modified Files: nssock.c Log Message: Use NS_RCSD() macro to quieten compiler. Index: nssock.c =================================================================== RCS file: /cvsroot/naviserver/naviserver/nssock/nssock.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** nssock.c 16 Feb 2005 08:41:09 -0000 1.1.1.1 --- nssock.c 10 Jun 2005 17:58:58 -0000 1.2 *************** *** 37,46 **** #include "ns.h" static Ns_DriverProc SockProc; static int SockRecv(SOCKET sock, struct iovec *bufs, int nbufs); static int SockSend(SOCKET sock, struct iovec *bufs, int nbufs); - int Ns_ModuleVersion = 1; - /* --- 37,52 ---- #include "ns.h" + NS_RCSID("@(#) $Header$"); + + int Ns_ModuleVersion = 1; + + /* + * Local functions defined in this file. + */ + static Ns_DriverProc SockProc; static int SockRecv(SOCKET sock, struct iovec *bufs, int nbufs); static int SockSend(SOCKET sock, struct iovec *bufs, int nbufs); /* |