diff options
author | 2007-04-05 01:37:41 +0000 | |
---|---|---|
committer | 2007-04-05 01:37:41 +0000 | |
commit | 853eb718eac3e1452429a3dd2efcee67c1b53d3a (patch) | |
tree | bdeb912e746473a58a4cc1672ed8cbba3e9c1620 | |
parent | remove some extra tests, from charles longeau (diff) | |
download | wireguard-openbsd-853eb718eac3e1452429a3dd2efcee67c1b53d3a.tar.xz wireguard-openbsd-853eb718eac3e1452429a3dd2efcee67c1b53d3a.zip |
another extra test i missed before, from charles longeau
-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")) { |