mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 23:34:52 +02:00
Merge
This commit is contained in:
commit
a8c5f1e59a
64 changed files with 1781 additions and 378 deletions
|
@ -93,10 +93,13 @@ public class NTLMAuthentication extends AuthenticationInfo {
|
|||
|
||||
/**
|
||||
* Returns true if the given site is trusted, i.e. we can try
|
||||
* transparent Authentication.
|
||||
* transparent Authentication. Shouldn't be called since
|
||||
* capability not supported on Unix
|
||||
*/
|
||||
public static boolean isTrustedSite(URL url) {
|
||||
return NTLMAuthCallback.isTrustedSite(url);
|
||||
if (NTLMAuthCallback != null)
|
||||
return NTLMAuthCallback.isTrustedSite(url);
|
||||
return false;
|
||||
}
|
||||
|
||||
private void init0() {
|
||||
|
|
|
@ -584,6 +584,8 @@ static void initLoopbackRoutes() {
|
|||
|
||||
if (loRoutesTemp == 0) {
|
||||
free(loRoutes);
|
||||
loRoutes = NULL;
|
||||
nRoutes = 0;
|
||||
fclose (f);
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue