summaryrefslogtreecommitdiff
path: root/librewolf/debian/patches/debian-hacks/Set-program-name-from-the-remoting-name.patch
diff options
context:
space:
mode:
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, 0 insertions, 21 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
deleted file mode 100644
index 3887128..0000000
--- a/librewolf/debian/patches/debian-hacks/Set-program-name-from-the-remoting-name.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-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