1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-06 22:51:41 +00:00
freebsd-ports/www/libwww/files/patch-aa

12 lines
346 B
Plaintext
Raw Normal View History

--- Library/src/HTMIMImp.c.orig Sat Apr 5 09:26:21 1997
+++ Library/src/HTMIMImp.c Tue May 6 01:15:02 1997
@@ -213,7 +213,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;