forked from pool/MozillaFirefox
9b2ce29f83
* Find Options/Preferences more quickly with new search function * Media is no longer auto-played when opened in a background tab * Enable CSS Grid Layout View - requires NSPR 4.16 and NSS 3.32.1 OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaFirefox?expand=0&rev=603
29 lines
946 B
Diff
29 lines
946 B
Diff
# HG changeset patch
|
|
# User Petr Cerny <pcerny@novell.com>
|
|
# Parent 7308e4a7c1f769f4bbbc90870b849cadd99495a6
|
|
# Parent fe1932b7223a298863663244accc524d474a9f6d
|
|
Bug 634334 - call to the ntlm_auth helper fails
|
|
|
|
diff --git a/extensions/auth/nsAuthSambaNTLM.cpp b/extensions/auth/nsAuthSambaNTLM.cpp
|
|
--- a/extensions/auth/nsAuthSambaNTLM.cpp
|
|
+++ b/extensions/auth/nsAuthSambaNTLM.cpp
|
|
@@ -169,17 +169,17 @@ static uint8_t* ExtractMessage(const nsA
|
|
nsresult
|
|
nsAuthSambaNTLM::SpawnNTLMAuthHelper()
|
|
{
|
|
const char* username = PR_GetEnv("USER");
|
|
if (!username)
|
|
return NS_ERROR_FAILURE;
|
|
|
|
const char* const args[] = {
|
|
- "ntlm_auth",
|
|
+ "/usr/bin/ntlm_auth",
|
|
"--helper-protocol", "ntlmssp-client-1",
|
|
"--use-cached-creds",
|
|
"--username", username,
|
|
nullptr
|
|
};
|
|
|
|
bool isOK = SpawnIOChild(const_cast<char* const*>(args), &mChildPID, &mFromChildFD, &mToChildFD);
|
|
if (!isOK)
|