diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2006-12-23 21:08:02 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2006-12-23 21:08:02 +0000 |
commit | e7a266b2661411a460bd9503dd4ae336a1d74459 (patch) | |
tree | d67be598caed8a7d1c362d40f678a112f03c2c9e /usr.sbin/httpd | |
parent | 9097d68b42a318413a55cc016ab66b4cb16c4a12 (diff) |
Spelling.
'preceeding' -> 'preceding'
'preceeds' -> 'precedes'
'preceeded' -> 'preceded'
Diffstat (limited to 'usr.sbin/httpd')
-rw-r--r-- | usr.sbin/httpd/src/main/buff.c | 2 | ||||
-rw-r--r-- | usr.sbin/httpd/src/main/util.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/httpd/src/main/buff.c b/usr.sbin/httpd/src/main/buff.c index 40765b61173..b29fd3afe4b 100644 --- a/usr.sbin/httpd/src/main/buff.c +++ b/usr.sbin/httpd/src/main/buff.c @@ -570,7 +570,7 @@ API_EXPORT(int) ap_bgets(char *buff, int n, BUFF *fb) if (ch == LF) { /* got LF */ if (ct == 0) buff[ct++] = '\n'; -/* if just preceeded by CR, replace CR with LF */ +/* if just preceded by CR, replace CR with LF */ else if (buff[ct - 1] == CR) buff[ct - 1] = '\n'; else if (ct < n - 1) diff --git a/usr.sbin/httpd/src/main/util.c b/usr.sbin/httpd/src/main/util.c index 94a2c8c4a7c..90e78c71c73 100644 --- a/usr.sbin/httpd/src/main/util.c +++ b/usr.sbin/httpd/src/main/util.c @@ -577,7 +577,7 @@ API_EXPORT(char *) ap_make_dirstr_parent(pool *p, const char *s) /* - * This function is deprecated. Use one of the preceeding two functions + * This function is deprecated. Use one of the preceding two functions * which are faster. */ API_EXPORT(char *) ap_make_dirstr(pool *p, const char *s, int n) |