summaryrefslogtreecommitdiff
path: root/waterfox-g/debian/patches/mozilla-ntlm-full-path.patch
diff options
context:
space:
mode:
Diffstat (limited to 'waterfox-g/debian/patches/mozilla-ntlm-full-path.patch')
-rw-r--r--waterfox-g/debian/patches/mozilla-ntlm-full-path.patch15
1 files changed, 15 insertions, 0 deletions
diff --git a/waterfox-g/debian/patches/mozilla-ntlm-full-path.patch b/waterfox-g/debian/patches/mozilla-ntlm-full-path.patch
new file mode 100644
index 0000000..9c7a8db
--- /dev/null
+++ b/waterfox-g/debian/patches/mozilla-ntlm-full-path.patch
@@ -0,0 +1,15 @@
+# User Petr Cerny <pcerny@novell.com>
+
+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
+@@ -160,7 +160,7 @@ 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",
bgstack15