diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2007-04-05 01:37:42 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2007-04-05 01:37:42 +0000 |
commit | 0255bc9e3e9647655e95c3ffbcdc5d0c896efadc (patch) | |
tree | b76c9c2c555b6e6657043965589e1a8bd73c4d97 /usr.sbin/httpd | |
parent | b9b8eae41707c17c9f1c76f3f05fba53c279fdc2 (diff) |
another extra test i missed before, from charles longeau
Diffstat (limited to 'usr.sbin/httpd')
-rw-r--r-- | usr.sbin/httpd/src/modules/standard/mod_cern_meta.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/httpd/src/modules/standard/mod_cern_meta.c b/usr.sbin/httpd/src/modules/standard/mod_cern_meta.c index 44a252bf3b1..586fb0786d3 100644 --- a/usr.sbin/httpd/src/modules/standard/mod_cern_meta.c +++ b/usr.sbin/httpd/src/modules/standard/mod_cern_meta.c @@ -263,7 +263,7 @@ static int scan_meta_file(request_rec *r, FILE *f) } *l++ = '\0'; - while (*l && ap_isspace(*l)) + while (ap_isspace(*l)) ++l; if (!strcasecmp(w, "Content-type")) { |