Changeset 464 for trunk/server/source3/printing/print_cups.c
- Timestamp:
- Jun 10, 2010, 12:38:39 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server/source3/printing/print_cups.c
r429 r464 408 408 DEBUG(5,("cups_pcap_load_async: asynchronously loading cups printers\n")); 409 409 410 #ifndef __OS2__ 410 411 if (pipe(fds) == -1) { 412 #else // on OS2 we have no select() on pipes, so we use socketpair() instead 413 if (socketpair(AF_UNIX, SOCK_STREAM,0, fds) == -1) { 414 #endif 411 415 return false; 412 416 }
Note:
See TracChangeset
for help on using the changeset viewer.