summaryrefslogtreecommitdiff
path: root/librewolf/debian/patches/debian-hacks/Set-program-name-from-the-remoting-name.patch
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-01-05 16:21:31 -0500
committerB. Stack <bgstack15@gmail.com>2022-01-05 16:21:31 -0500
commit826a2e7f8c7786acb3b5d2217f19814f314289ab (patch)
tree9c1b67262b407684d8874fc9f525042c90d88207 /librewolf/debian/patches/debian-hacks/Set-program-name-from-the-remoting-name.patch
parentcheck gcc ver instead of fedora ver (diff)
downloadstackrpms-826a2e7f8c7786acb3b5d2217f19814f314289ab.tar.gz
stackrpms-826a2e7f8c7786acb3b5d2217f19814f314289ab.tar.bz2
stackrpms-826a2e7f8c7786acb3b5d2217f19814f314289ab.zip
add initial lw d/ contents
Diffstat (limited to 'librewolf/debian/patches/debian-hacks/Set-program-name-from-the-remoting-name.patch')
-rw-r--r--librewolf/debian/patches/debian-hacks/Set-program-name-from-the-remoting-name.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/librewolf/debian/patches/debian-hacks/Set-program-name-from-the-remoting-name.patch b/librewolf/debian/patches/debian-hacks/Set-program-name-from-the-remoting-name.patch
new file mode 100644
index 0000000..3887128
--- /dev/null
+++ b/librewolf/debian/patches/debian-hacks/Set-program-name-from-the-remoting-name.patch
@@ -0,0 +1,21 @@
+From: Mike Hommey <mh@glandium.org>
+Date: Sun, 5 Feb 2017 08:41:22 +0900
+Subject: Set program name from the remoting name
+
+---
+ toolkit/xre/nsAppRunner.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/toolkit/xre/nsAppRunner.cpp b/toolkit/xre/nsAppRunner.cpp
+index 60ea696..f708e50 100644
+--- a/toolkit/xre/nsAppRunner.cpp
++++ b/toolkit/xre/nsAppRunner.cpp
+@@ -4300,7 +4300,7 @@ int XREMain::XRE_mainStartup(bool* aExitFlag) {
+
+ // Set program name to the one defined in application.ini.
+ {
+- nsAutoCString program(gAppData->name);
++ nsAutoCString program(gAppData->remotingName);
+ ToLowerCase(program);
+ g_set_prgname(program.get());
+ }
bgstack15