From: Zoran V. <vas...@us...> - 2005-06-13 08:50:26
|
Update of /cvsroot/naviserver/naviserver/nsd In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv682 Modified Files: compress.c Log Message: Fixed Ns_CompressGzip declaration when --without-zlib is used (was lacking the "const" qualifier). Index: compress.c =================================================================== RCS file: /cvsroot/naviserver/naviserver/nsd/compress.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** compress.c 13 Jun 2005 06:14:26 -0000 1.3 --- compress.c 13 Jun 2005 08:50:17 -0000 1.4 *************** *** 111,115 **** int ! Ns_CompressGzip(char *buf, int len, Tcl_DString *outPtr, int level) { return NS_ERROR; --- 111,115 ---- int ! Ns_CompressGzip(const char *buf, int len, Tcl_DString *outPtr, int level) { return NS_ERROR; |