diff options
author | Rainer Jung <rjung@apache.org> | 2016-08-11 21:50:02 +0200 |
---|---|---|
committer | Rainer Jung <rjung@apache.org> | 2016-08-11 21:50:02 +0200 |
commit | d79b514c4b925e4cd983297c784124efb8f6efc7 (patch) | |
tree | 5de52fcca8b9fd2d3026267781ec3a4ba55d1d7e /modules/arch | |
parent | grammar++ (diff) | |
download | apache2-d79b514c4b925e4cd983297c784124efb8f6efc7.tar.xz apache2-d79b514c4b925e4cd983297c784124efb8f6efc7.zip |
Fix spelling in comments and text files.
No functional change.
PR 59990
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1756038 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/arch')
-rw-r--r-- | modules/arch/netware/mod_nw_ssl.c | 2 | ||||
-rw-r--r-- | modules/arch/win32/mod_isapi.c | 6 | ||||
-rw-r--r-- | modules/arch/win32/mod_isapi.h | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/modules/arch/netware/mod_nw_ssl.c b/modules/arch/netware/mod_nw_ssl.c index fc8af9889e..298554a6e5 100644 --- a/modules/arch/netware/mod_nw_ssl.c +++ b/modules/arch/netware/mod_nw_ssl.c @@ -778,7 +778,7 @@ static int nwssl_post_config(apr_pool_t *pconf, apr_pool_t *plog, for (sl = ap_seclisteners; sl != NULL; sl = sl->next) { /* If we find a pre-existing listen socket and it has already been - created, then no neeed to go any further, just reuse it. */ + created, then no need to go any further, just reuse it. */ if (((sl->fd = find_secure_listener(sl)) >= 0) && (sl->used)) { continue; } diff --git a/modules/arch/win32/mod_isapi.c b/modules/arch/win32/mod_isapi.c index bd7cae77c1..2e51d51538 100644 --- a/modules/arch/win32/mod_isapi.c +++ b/modules/arch/win32/mod_isapi.c @@ -27,7 +27,7 @@ * It is a complete implementation of the ISAPI 2.0 specification, * except for "Microsoft extensions" to the API which provide * asynchronous I/O. It is further extended to include additional - * "Microsoft extentions" through IIS 5.0, with some deficiencies + * "Microsoft extensions" through IIS 5.0, with some deficiencies * where one-to-one mappings don't exist. * * Refer to /manual/mod/mod_isapi.html for additional details on @@ -152,7 +152,7 @@ static const char *isapi_cmd_cachefile(cmd_parms *cmd, void *dummy, return NULL; } - /* Load the extention as cached (with null request_rec) */ + /* Load the extension as cached (with null request_rec) */ rv = isapi_lookup(cmd->pool, cmd->server, NULL, fspec, &isa); if (rv != APR_SUCCESS) { ap_log_error(APLOG_MARK, APLOG_WARNING, rv, cmd->server, APLOGNO(02106) @@ -753,7 +753,7 @@ static apr_ssize_t send_response_header(isapi_cid *cid, /* Well... either there is no dwHttpStatusCode or it's HTTP_OK. * In any case, we don't have a good status to return yet... * Perhaps the one we came in with will be better. Let's use it, - * if we were given one (note this is a pendantic case, it would + * if we were given one (note this is a pedantic case, it would * normally be covered above unless the scan script code unset * the r->status). Should there be a check here as to whether * we are setting a valid response code? diff --git a/modules/arch/win32/mod_isapi.h b/modules/arch/win32/mod_isapi.h index 88f5017798..6afa27b3cf 100644 --- a/modules/arch/win32/mod_isapi.h +++ b/modules/arch/win32/mod_isapi.h @@ -136,7 +136,7 @@ typedef struct HSE_SEND_HEADER_EX_INFO { #define HSE_IO_NODELAY 4096 /* The Completion function prototype. This callback may be fixed with - * the HSE_REQ_IO_COMPLETION ServerSupportFunction call, or overriden + * the HSE_REQ_IO_COMPLETION ServerSupportFunction call, or overridden * for the HSE_REQ_TRANSMIT_FILE call. */ typedef void (APR_THREAD_FUNC *PFN_HSE_IO_COMPLETION) |