summaryrefslogtreecommitdiff
path: root/www/libwww/patches/patch-ab
blob: c8d76796686bae19addc03568ab208e4dbd9479d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
$NetBSD: patch-ab,v 1.9 2001/04/20 12:33:53 fredb Exp $

--- Library/src/HTMIMImp.c.orig	Mon Feb 22 16:10:11 1999
+++ Library/src/HTMIMImp.c
@@ -226,7 +226,7 @@
     int value = deflt;
     if (start != NULL) {
 	start += strlen(needle);
-	while isspace(*start) start++;
+	while (isspace(*start)) start++;
 	if (isdigit(*start)) {
 	    char * end = start + 1;
 	    char save;