We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version: 1.1-current CUPS.org User: jlovell
As reported to us by Darrell Walker in radr://3933102, the SIGTERM block condition in usb-unix.c is inverted. Here's the fix:
RCS file: /home/anoncvs/cups/backend/usb-unix.c,v retrieving revision 1.8 diff -u -d -b -w -r1.8 usb-unix.c --- usb-unix.c 3 Jan 2005 19:29:44 -0000 1.8 +++ usb-unix.c 5 Jan 2005 21:27:51 -0000 @@ -140,7 +140,7 @@
Thanks!
The text was updated successfully, but these errors were encountered:
CUPS.org User: mike
Thanks, fixed...
Sorry, something went wrong.
No branches or pull requests
Version: 1.1-current
CUPS.org User: jlovell
As reported to us by Darrell Walker in radr://3933102, the SIGTERM block condition in usb-unix.c is inverted. Here's the fix:
Index: usb-unix.c
RCS file: /home/anoncvs/cups/backend/usb-unix.c,v
retrieving revision 1.8
diff -u -d -b -w -r1.8 usb-unix.c
--- usb-unix.c 3 Jan 2005 19:29:44 -0000 1.8
+++ usb-unix.c 5 Jan 2005 21:27:51 -0000
@@ -140,7 +140,7 @@
*/
{
#ifdef HAVE_SIGSET /* Use System V signals over POSIX to avoid bugs */
sigset(SIGTERM, SIG_IGN);
Thanks!
The text was updated successfully, but these errors were encountered: