diff options
author | Philip Guenthe <guenther@cvs.openbsd.org> | 2012-02-24 06:19:01 +0000 |
---|---|---|
committer | Philip Guenthe <guenther@cvs.openbsd.org> | 2012-02-24 06:19:01 +0000 |
commit | 5684b0ff2799cac6658e9e66d3dc150030aaf083 (patch) | |
tree | 4a906e7014b917d765632b751e3f46785aceb0fd /usr.sbin | |
parent | 6e513c40818b714c9555797760d6e4c3e4f48d7f (diff) |
Correct the spelling of "transferred" and "transferring"
from Tobias Ulmer (tobiasu at tmux.org); ok jmc@, krw@
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/amd/amd/info_hes.c | 6 | ||||
-rw-r--r-- | usr.sbin/httpd/htdocs/manual/mod/mod_rewrite.html | 2 | ||||
-rw-r--r-- | usr.sbin/httpd/htdocs/manual/mod/mod_ssl/ssl_faq.html | 2 | ||||
-rw-r--r-- | usr.sbin/npppd/common/bytebuf.c | 6 |
4 files changed, 8 insertions, 8 deletions
diff --git a/usr.sbin/amd/amd/info_hes.c b/usr.sbin/amd/amd/info_hes.c index a9b0c0805cf..5561614866a 100644 --- a/usr.sbin/amd/amd/info_hes.c +++ b/usr.sbin/amd/amd/info_hes.c @@ -32,7 +32,7 @@ * SUCH DAMAGE. * * from: @(#)info_hes.c 8.1 (Berkeley) 6/6/93 - * $Id: info_hes.c,v 1.12 2003/06/02 23:36:51 millert Exp $ + * $Id: info_hes.c,v 1.13 2012/02/24 06:19:00 guenther Exp $ */ /* @@ -308,8 +308,8 @@ hs_res_send(char *buf, int buflen, char *answer, int anslen) } } if (status == -2) { - /* There was a permanent error transfering this - zone. Give up. */ + /* There was a permanent error transferring + * this zone. Give up. */ if (s != -1) { (void) close(s); s = -1; diff --git a/usr.sbin/httpd/htdocs/manual/mod/mod_rewrite.html b/usr.sbin/httpd/htdocs/manual/mod/mod_rewrite.html index 61903c9d942..3ec00917564 100644 --- a/usr.sbin/httpd/htdocs/manual/mod/mod_rewrite.html +++ b/usr.sbin/httpd/htdocs/manual/mod/mod_rewrite.html @@ -326,7 +326,7 @@ <code>%N</code> (see below). These are available for creating the strings <em>Substitution</em> and <em>TestString</em>. Figure 2 shows to which locations the back-references are - transfered for expansion. + transferred for expansion. <div align="CENTER"> <table cellspacing="0" cellpadding="2" border="0"> diff --git a/usr.sbin/httpd/htdocs/manual/mod/mod_ssl/ssl_faq.html b/usr.sbin/httpd/htdocs/manual/mod/mod_ssl/ssl_faq.html index 26b8e0e4494..8343c41d0c5 100644 --- a/usr.sbin/httpd/htdocs/manual/mod/mod_ssl/ssl_faq.html +++ b/usr.sbin/httpd/htdocs/manual/mod/mod_ssl/ssl_faq.html @@ -1247,7 +1247,7 @@ Why has my webserver a higher load now that I run SSL there? <p> Because SSL uses strong cryptographic encryption and this needs a lot of number crunching. And because when you request a webpage via HTTPS even - the images are transfered encrypted. So, when you have a lot of HTTPS + the images are transferred encrypted. So, when you have a lot of HTTPS traffic the load increases. <p> <li><a name="ToC43"></a> diff --git a/usr.sbin/npppd/common/bytebuf.c b/usr.sbin/npppd/common/bytebuf.c index ed1bceb5e02..872c0f8fe40 100644 --- a/usr.sbin/npppd/common/bytebuf.c +++ b/usr.sbin/npppd/common/bytebuf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bytebuf.c,v 1.3 2010/07/02 21:20:57 yasuoka Exp $ */ +/* $OpenBSD: bytebuf.c,v 1.4 2012/02/24 06:19:00 guenther Exp $ */ /*- * Copyright (c) 2009 Internet Initiative Japan Inc. * All rights reserved. @@ -41,7 +41,7 @@ * }</pre> * * @author Yasuoka Masahiko - * $Id: bytebuf.c,v 1.3 2010/07/02 21:20:57 yasuoka Exp $ + * $Id: bytebuf.c,v 1.4 2012/02/24 06:19:00 guenther Exp $ */ #include <stdlib.h> #include <string.h> @@ -268,7 +268,7 @@ bytebuffer_put(bytebuffer *_this, const void *src, size_t srclen) * and <code>errno</code> is <code>ENOBUFS</code> * * @param dst pointer of the destination memory. Specify NULL - * to skip transfering the data. + * to skip transferring the data. * @param dstlne memory size of the destination. */ void * |