diff options
Diffstat (limited to 'src/gdialog.in')
-rwxr-xr-x | src/gdialog.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/gdialog.in b/src/gdialog.in index 48699d8c..004571ba 100755 --- a/src/gdialog.in +++ b/src/gdialog.in @@ -305,4 +305,10 @@ ARG: while ($argn < $args) { # execute the constructed zenity command line $command .= " 2>&1"; -system($command); + +# perl doc: The return value of system() is the exit status of the +#program as returned by the wait() call. To get the actual exit value +# divide by 256. + +exit(system($command)/256); + |