opnsense-ports/www/libwww/files/patch-Library__src__HTMIMImp.c
Franco Fichtner 8cb1a96ede ports: pull in a snapshot of the FreeBSD ports tree
Taken from:	https://github.com/freebsd/freebsd-ports.git
Commit id:	5070672073b68be364139bc6b3a89100bd17d331
2014-11-09 14:03:21 +01:00

11 lines
346 B
C

--- Library/src/HTMIMImp.c.orig Sun Jun 30 22:51:48 2002
+++ Library/src/HTMIMImp.c Sun Jun 30 22:52:01 2002
@@ -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;