diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-08-06 21:08:09 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-08-06 21:08:09 +0000 |
commit | 8f4be4c9fc053e06d8170659c9bde356ada1a655 (patch) | |
tree | d116498a9604b21bf16d82850fcf1726939a4f6a /usr.sbin/httpd | |
parent | 9293e104f0b834487ffef8344f12e9dc93c0abd0 (diff) |
Remove some double semicolons (hmm, do two semis equal a maxi?).
I've skipped the GNU stuff for now. From Patrick Latifi.
Diffstat (limited to 'usr.sbin/httpd')
-rw-r--r-- | usr.sbin/httpd/src/main/buff.c | 2 | ||||
-rw-r--r-- | usr.sbin/httpd/src/modules/example/mod_example.c | 2 | ||||
-rw-r--r-- | usr.sbin/httpd/src/modules/standard/mod_autoindex.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/httpd/src/main/buff.c b/usr.sbin/httpd/src/main/buff.c index f24f1631591..faee2f956f6 100644 --- a/usr.sbin/httpd/src/main/buff.c +++ b/usr.sbin/httpd/src/main/buff.c @@ -505,7 +505,7 @@ API_EXPORT(void) ap_bpushh(BUFF *fb, HANDLE hFH) API_EXPORT(int) ap_bsetopt(BUFF *fb, int optname, const void *optval) { if (optname == BO_BYTECT) { - fb->bytes_sent = *(const long int *) optval - (long int) fb->outcnt;; + fb->bytes_sent = *(const long int *) optval - (long int) fb->outcnt; return 0; } else { diff --git a/usr.sbin/httpd/src/modules/example/mod_example.c b/usr.sbin/httpd/src/modules/example/mod_example.c index cc40eabe15e..9f10286b92d 100644 --- a/usr.sbin/httpd/src/modules/example/mod_example.c +++ b/usr.sbin/httpd/src/modules/example/mod_example.c @@ -548,7 +548,7 @@ static int example_handler(request_rec *r) ap_get_server_version()); ap_rputs(" <BR>\n", r); ap_rprintf(r, " Server built: \"%s\"\n", ap_get_server_built()); - ap_rputs(" </P>\n", r);; + ap_rputs(" </P>\n", r); ap_rputs(" <P>\n", r); ap_rputs(" The format for the callback trace is:\n", r); ap_rputs(" </P>\n", r); diff --git a/usr.sbin/httpd/src/modules/standard/mod_autoindex.c b/usr.sbin/httpd/src/modules/standard/mod_autoindex.c index 34ba9a978d9..985d5b377d7 100644 --- a/usr.sbin/httpd/src/modules/standard/mod_autoindex.c +++ b/usr.sbin/httpd/src/modules/standard/mod_autoindex.c @@ -679,7 +679,7 @@ static void *merge_autoindex_configs(pool *p, void *basev, void *addv) * There are local non-incremental settings, which clear * all inheritance from above. They *are* the new base settings. */ - new->opts = add->opts;; + new->opts = add->opts; } /* * We're guaranteed that there'll be no overlap between |