Package: wireshark / 2.6.7-1~deb9u1

16_licence_about_location.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Description: Change location of license file in about dialog
Forwarded: not-needed
Author: Frederic Peters <fpeters@debian.org>

--- a/ui/gtk/about_dlg.c
+++ b/ui/gtk/about_dlg.c
@@ -522,7 +522,7 @@
 #if defined(_WIN32)
   absolute_path = get_datafile_path("COPYING.txt");
 #else
-  absolute_path = get_datafile_path("COPYING");
+  absolute_path = get_datafile_path("ABOUT.GPL");
 #endif
   page = text_page_new(absolute_path);
 
--- a/ui/qt/about_dialog.cpp
+++ b/ui/qt/about_dialog.cpp
@@ -394,7 +394,7 @@
 #if defined(_WIN32)
     f_license.setFileName(get_datafile_path("COPYING.txt"));
 #else
-    f_license.setFileName(get_datafile_path("COPYING"));
+    f_license.setFileName(get_datafile_path("ABOUT.GPL"));
 #endif
 
     f_license.open(QFile::ReadOnly | QFile::Text);