Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 713205 Details for
Bug 912358
wget syntax to login to protected site using http://username:password@server/ stopped working
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Patch for this issue.
0001-Wget-should-set-sock-variable-to-1-if-no-persistent-.patch (text/plain), 1.06 KB, created by
Tomáš Hozza
on 2013-03-20 11:59:55 UTC
(
hide
)
Description:
Patch for this issue.
Filename:
MIME Type:
Creator:
Tomáš Hozza
Created:
2013-03-20 11:59:55 UTC
Size:
1.06 KB
patch
obsolete
>From 8c377bb6dbbe440a61b9b2ed9f4619f336faa8b8 Mon Sep 17 00:00:00 2001 >From: Tomas Hozza <thozza@redhat.com> >Date: Wed, 20 Mar 2013 11:55:32 +0100 >Subject: [PATCH] Wget should set sock variable to -1 if no persistent conn > exists > >Wget should set sock variable to -1 if no persistent >connection exists. Function persistent_available_p() >tests persistent connection but if test_socket_open() >fails it closes the socket but will not set sock variable >to -1. After returning from persistent_available_p() >it is possible that sock has still value of already >closed connection. > >Signed-off-by: Tomas Hozza <thozza@redhat.com> >--- > src/http.c | 4 ++++ > 1 file changed, 4 insertions(+) > >diff --git a/src/http.c b/src/http.c >index fa2d5ed..1a854ae 100644 >--- a/src/http.c >+++ b/src/http.c >@@ -1985,6 +1985,10 @@ gethttp (struct url *u, struct http_stat *hs, int *dt, struct url *proxy, > exec_name, quote (relevant->host)); > return HOSTERR; > } >+ else if (sock != -1) >+ { >+ sock = -1; >+ } > } > > if (sock < 0) >-- >1.8.1.4 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 912358
:
702250
| 713205