Update of /cvsroot/devil-linux/build/scripts
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4133/scripts
Modified Files:
Tag: rel-1-2-patches
squid
Log Message:
security patch for squid NTLM module
Index: squid
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/squid,v
retrieving revision 1.17
retrieving revision 1.17.2.1
diff -u -d -r1.17 -r1.17.2.1
--- squid 27 Mar 2004 17:42:20 -0000 1.17
+++ squid 11 Jun 2004 14:03:33 -0000 1.17.2.1
@@ -29,11 +29,14 @@
case $1 in
build )
if [ "$CONFIG_SQUID" = "y" ]; then
- if [ ! -f .yp-patch.done ]; then
+ if [ ! -f .patches.done ]; then
pushd helpers/basic_auth/YP/ > /dev/null
bzcat $DL_DIR/src/yp_auth.patch.bz2 | patch || exit 1
popd > /dev/null
- touch .yp-patch.done
+ pushd helpers/ntlm_auth/SMB > /dev/null
+ bzcat $DL_DIR/src/squid-libntlmssp.c.patch.bz2 | patch || exit 1
+ popd > /dev/null
+ touch .patches.done
fi
if [ "$CONFIG_LDAP" = "y" ]; then
AUTH_HELPERS="${AUTH_HELPERS} LDAP"
|