From: Francesco Chemolli Date: Sat, 27 Dec 2014 21:32:53 +0000 (+0100) Subject: Removed configuration file X-Git-Tag: merge-candidate-3-v1~410^2~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7483ddee55e8ae1ec671f862dff23e7b20aa7490;p=thirdparty%2Fsquid.git Removed configuration file --- diff --git a/helpers/basic_auth/MSNT/msntauth.conf.default b/helpers/basic_auth/MSNT/msntauth.conf.default deleted file mode 100644 index 341bfa9dc7..0000000000 --- a/helpers/basic_auth/MSNT/msntauth.conf.default +++ /dev/null @@ -1,19 +0,0 @@ -## Copyright (C) 1996-2014 The Squid Software Foundation and contributors -## -## Squid software is distributed under GPLv2+ license and includes -## contributions from numerous individuals and organizations. -## Please see the COPYING and CONTRIBUTORS files for details. -## - -# Sample MSNT authenticator configuration file -# Antonino Iannella, Stellar-X Pty Ltd -# Sun Sep 2 15:52:31 CST 2001 - -# NT hosts to use. Best to put their IP addresses in /etc/hosts. -server my_PDC my_BDC my_NTdomain -server other_PDC other_BDC otherdomain - -# Denied and allowed users. Comment these if not needed. -#denyusers /usr/local/squid/etc/msntauth.denyusers -#allowusers /usr/local/squid/etc/msntauth.allowusers - diff --git a/helpers/basic_auth/MSNT/valid.cc b/helpers/basic_auth/MSNT/valid.cc index b84dfd0f56..f45292fcc4 100644 --- a/helpers/basic_auth/MSNT/valid.cc +++ b/helpers/basic_auth/MSNT/valid.cc @@ -40,7 +40,7 @@ Valid_User(char *USERNAME, char *PASSWORD, const char *SERVER, char *BACKUP, con if (con == NULL) { return (NTV_SERVER_ERROR); } - if (SMB_Negotiate(con, supportedDialects) < 0) { /* An error */ + if (SMB_Negotiate(con, supportedDialects) < 0) { /* An error */ SMB_Discon(con, 0); return (NTV_PROTOCOL_ERROR); }