forgotten file
This commit is contained in:
@ -768,12 +768,11 @@ _post_check (GtkCupsRequest *request)
|
||||
}
|
||||
else if (http_status == HTTP_ERROR)
|
||||
{
|
||||
int error = httpError (request->http);
|
||||
#ifdef G_OS_WIN32
|
||||
if (request->http->error != WSAENETDOWN &&
|
||||
request->http->error != WSAENETUNREACH)
|
||||
if (error != WSAENETDOWN && error != WSAENETUNREACH)
|
||||
#else
|
||||
if (request->http->error != ENETDOWN &&
|
||||
request->http->error != ENETUNREACH)
|
||||
if (error != ENETDOWN && error != ENETUNREACH)
|
||||
#endif /* G_OS_WIN32 */
|
||||
{
|
||||
request->attempts++;
|
||||
|
||||
Reference in New Issue
Block a user