Merge pull request #1312 from Unidata/urlauth.dmh

URL with username+pwd in url is not working.
This commit is contained in:
Ward Fisher 2019-02-14 13:27:20 -07:00 committed by GitHub
commit 30c2ca2413
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -160,8 +160,8 @@ NC_authsetup(NCauth* auth, NCURI* uri)
if(ret) {nullfree(uri_hostport); return ret;}
}
}
setauthfield(auth,"HTTP.USERNAME",user);
setauthfield(auth,"HTTP.PASSWORD",pwd);
setauthfield(auth,"HTTP.CREDENTIALS.USERNAME",user);
setauthfield(auth,"HTTP.CREDENTIALS.PASSWORD",pwd);
nullfree(user);
nullfree(pwd);
nullfree(uri_hostport);