6c01889e00
- appdate screenshot URL updated (by mailaender@opensuse.org) - Mozilla Thunderbird 91.0 * based on Mozilla's 91 ESR codebase * many new and changed features https://www.thunderbird.net/en-US/thunderbird/91.0/releasenotes/#whatsnew * Renamed "Add-ons" to "Add-ons and Themes" and "Options" to "Preferences" * Thunderbird now operates in multi-process (e10s) mode by default * New user interface for adding attachments * Enable redirect of messages * CardDAV address book support - Removed obsolete patches: * mozilla-bmo1463035.patch * mozilla-ppc-altivec_static_inline.patch * mozilla-pipewire-0-3.patch * mozilla-bmo1554971.patch - add mozilla-libavcodec58_91.patch - removed obsolete BigEndian ICU build workaround - updated build requirements - build using clang OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaThunderbird?expand=0&rev=600
29 lines
1.1 KiB
Diff
29 lines
1.1 KiB
Diff
# HG changeset patch
|
|
# User Petr Cerny <pcerny@novell.com>
|
|
# Parent 7308e4a7c1f769f4bbbc90870b849cadd99495a6
|
|
# Parent 2361c5db1e70e358b2158325e07fa15bb4569c2c
|
|
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
|
|
@@ -156,17 +156,17 @@ static uint8_t* ExtractMessage(const nsA
|
|
*aLen = (length / 4) * 3 - numEquals;
|
|
return reinterpret_cast<uint8_t*>(PL_Base64Decode(s, length, nullptr));
|
|
}
|
|
|
|
nsresult nsAuthSambaNTLM::SpawnNTLMAuthHelper() {
|
|
const char* username = PR_GetEnv("USER");
|
|
if (!username) return NS_ERROR_FAILURE;
|
|
|
|
- const char* const args[] = {"ntlm_auth",
|
|
+ const char* const args[] = {"/usr/bin/ntlm_auth",
|
|
"--helper-protocol",
|
|
"ntlmssp-client-1",
|
|
"--use-cached-creds",
|
|
"--username",
|
|
username,
|
|
nullptr};
|
|
|
|
bool isOK = SpawnIOChild(const_cast<char* const*>(args), &mChildPID,
|