]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Merged other changes
authorFrancesco Chemolli <kinkie@squid-cache.org>
Sat, 27 Dec 2014 20:28:57 +0000 (21:28 +0100)
committerFrancesco Chemolli <kinkie@squid-cache.org>
Sat, 27 Dec 2014 20:28:57 +0000 (21:28 +0100)
helpers/basic_auth/MSNT/msntauth.cc

index 69ee0cf6c6a7bca94993948677de33bde1e9926e..67cf317aa9c45a26e5d85f1608cf9e40465d115e 100644 (file)
@@ -64,7 +64,9 @@ bool
 validate_user(char *username, char *password)
 {
        for (domaincontroller dc : domaincontrollers) {
-           int rv = Valid_User(username, password, dc.server.c_str(), dc.domain.c_str());
+               std::cerr << "testing against " << dc.server << std::endl;
+               const int rv = Valid_User(username, password, dc.server.c_str(), dc.domain.c_str());
+               std::cerr << "check result: " << rv << std::endl;
                if (rv == NTV_NO_ERROR)
                        return true;
        }