0bbee85568
- No longer need localhost, str1740, str1758, str1736, str1776 patches.
17 lines
429 B
Diff
17 lines
429 B
Diff
--- cups-1.2.1/backend/usb-unix.c.direct-usb 2006-07-04 17:50:28.000000000 +0100
|
|
+++ cups-1.2.1/backend/usb-unix.c 2006-07-04 17:51:56.000000000 +0100
|
|
@@ -327,12 +327,7 @@
|
|
if (!strncmp(uri, "usb:/dev/", 9))
|
|
#ifdef __linux
|
|
{
|
|
- /*
|
|
- * Do not allow direct devices anymore...
|
|
- */
|
|
-
|
|
- errno = ENODEV;
|
|
- return (-1);
|
|
+ return (open(uri + 4, O_RDWR | O_EXCL));
|
|
}
|
|
else if (!strncmp(uri, "usb://", 6))
|
|
{
|