summaryrefslogtreecommitdiff
path: root/waterfox-g/debian/patches/mozilla-ntlm-full-path.patch
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2023-10-09 13:25:50 -0400
committerB. Stack <bgstack15@gmail.com>2023-10-09 13:26:31 -0400
commit64f94edaaafa871bd320fa2515ae8c42a3ede300 (patch)
tree1487e57fefe2ade96c21f2423ef1d71ed671dbfa /waterfox-g/debian/patches/mozilla-ntlm-full-path.patch
parentMerge branch 'jellyfin-mpv-shim' (diff)
downloadstackrpms-64f94edaaafa871bd320fa2515ae8c42a3ede300.tar.gz
stackrpms-64f94edaaafa871bd320fa2515ae8c42a3ede300.tar.bz2
stackrpms-64f94edaaafa871bd320fa2515ae8c42a3ede300.zip
waterfox-g 6.0.2 rc1
Diffstat (limited to 'waterfox-g/debian/patches/mozilla-ntlm-full-path.patch')
-rw-r--r--waterfox-g/debian/patches/mozilla-ntlm-full-path.patch17
1 files changed, 2 insertions, 15 deletions
diff --git a/waterfox-g/debian/patches/mozilla-ntlm-full-path.patch b/waterfox-g/debian/patches/mozilla-ntlm-full-path.patch
index ce5b6a2..9c7a8db 100644
--- a/waterfox-g/debian/patches/mozilla-ntlm-full-path.patch
+++ b/waterfox-g/debian/patches/mozilla-ntlm-full-path.patch
@@ -1,18 +1,10 @@
-# 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
+index 5b701f237978..4004a5cfc79a 100644
--- 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() {
+@@ -160,7 +160,7 @@ nsresult nsAuthSambaNTLM::SpawnNTLMAuthHelper() {
const char* username = PR_GetEnv("USER");
if (!username) return NS_ERROR_FAILURE;
@@ -21,8 +13,3 @@ diff --git a/extensions/auth/nsAuthSambaNTLM.cpp b/extensions/auth/nsAuthSambaNT
"--helper-protocol",
"ntlmssp-client-1",
"--use-cached-creds",
- "--username",
- username,
- nullptr};
-
- bool isOK = SpawnIOChild(const_cast<char* const*>(args), &mChildPID,
bgstack15