60c88c48d1
Upstream version of dvd+rw-tools is quite old and many Linux distributions apply multiple patches to keep it working on newer systems. This commit includes those patches. This closes #21024.
12 lines
382 B
Diff
12 lines
382 B
Diff
--- dvd+rw-tools-7.0/dvd+rw-format.cpp.wexit 2007-06-21 12:42:30.000000000 +0200
|
|
+++ dvd+rw-tools-7.0/dvd+rw-format.cpp 2007-06-21 12:44:13.000000000 +0200
|
|
@@ -245,7 +245,7 @@ int main (int argc, char *argv[])
|
|
alarm(1);
|
|
while ((waitpid(pid,&i,0) != pid) && !WIFEXITED(i)) ;
|
|
if (WEXITSTATUS(i) == 0) fprintf (stderr,"\n");
|
|
- exit (0);
|
|
+ exit (WEXITSTATUS(i));
|
|
}
|
|
#endif
|
|
|