aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2003-09-11 08:25:11 +0000
committerEric Andersen <andersen@codepoet.org>2003-09-11 08:25:11 +0000
commit6231f092bd5861cd51a05440b15c00afabbb8851 (patch)
tree206c5f78656cd3c44e10beaf9df53aa67095f529 /networking
parentcc20ebc11e2fdca0dc08788f663d0351c053df28 (diff)
downloadbusybox-6231f092bd5861cd51a05440b15c00afabbb8851.tar.gz
Patch from Philip Blundell:
On Thu, 2003-09-11 at 01:09, Glenn McGrath wrote: > Applied Thanks. Unfortunately there was one small bug in that last patch. Could you apply this one as well? p.
Diffstat (limited to 'networking')
-rw-r--r--networking/wget.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/wget.c b/networking/wget.c
index 5f2a39917..b1cc35e34 100644
--- a/networking/wget.c
+++ b/networking/wget.c
@@ -565,7 +565,7 @@ void parse_url(char *url, struct host_info *h)
char *ep;
ep = h->host + 1;
- while (*ep == ':' || isdigit (*ep))
+ while (*ep == ':' || isxdigit (*ep))
ep++;
if (*ep == ']') {
h->host++;
@@ -841,7 +841,7 @@ progressmeter(int flag)
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: wget.c,v 1.58 2003/09/10 23:52:15 bug1 Exp $
+ * $Id: wget.c,v 1.59 2003/09/11 08:25:11 andersen Exp $
*/