[Bug 41190] wine hangs at startup if no CUPS daemon running.

wine-bugs at winehq.org wine-bugs at winehq.org
Sun Aug 21 18:50:45 CDT 2016


https://bugs.winehq.org/show_bug.cgi?id=41190

--- Comment #1 from Bruno Jesus <00cpxxx at gmail.com> ---
If the port is closed it should receive an error instantly and give up. From
your log I see the attempt:

connect(12, {sa_family=AF_INET6, sin6_port=htons(631), inet_pton(AF_INET6,
"::1", &sin6_addr), sin6_flowinfo=0, sin6_scope_id=0}, 28) = -1 EINPROGRESS
(Operation now in progress)

Then it tries to write something on the socket:

send(12, "POST / HTTP/1.1\r\nContent-Length:"..., 169, 0) = -1 ECONNREFUSED
(Connection refused)

As expected it does not work. Specially because:

access("/var/run/cups/cups.sock", R_OK) = -1 ENOENT (No such file or directory)

Wine uses a library to talk to cups, it does not connect using TCP directly
(AFAIK).

If you upgraded libcups recently you are maybe running into bug 41131.

-- 
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.



More information about the wine-bugs mailing list