Package: transgui
Version: 5.0.1-3
Severity: normal
Tags: patch

When choose "Open" or "Open containing folder" on torrent, transgui execute
command and show error with message "Unable to execute ...".  It happens
because of FPC change exit code from 0 to -1 for processes that is not yet
running.

Path file added.




-- System Information:
Debian Release: stretch/sid
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.3.0-1-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages transgui depends on:
ii  libatk1.0-0         2.18.0-1
ii  libc6               2.21-6
ii  libcairo2           1.14.6-1
ii  libgdk-pixbuf2.0-0  2.32.3-1
ii  libglib2.0-0        2.46.2-3
ii  libgtk2.0-0         2.24.29-1
ii  libpango-1.0-0      1.38.1-1
ii  libssl1.0.2         1.0.2e-1
ii  libx11-6            2:1.6.3-1

transgui recommends no packages.

transgui suggests no packages.
--- a/utils.pas
+++ b/utils.pas
@@ -450,7 +450,7 @@
 {$else darwin}
 
   {$ifdef unix}
-    Result:=UnixOpenURL(URL) = 0;
+    Result:=UnixOpenURL(URL) = -1;
   {$endif unix}
 
 {$endif darwin}

Reply via email to