1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

fix some grammar mistakes, mostly in comments

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1080821 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jeff Trawick
2011-03-12 00:35:39 +00:00
parent d7edefbbe4
commit 4598f1a7d4
13 changed files with 20 additions and 20 deletions

View File

@@ -102,9 +102,9 @@ typedef union {
/** This configuration directive does not take any arguments */ /** This configuration directive does not take any arguments */
# define AP_NO_ARGS func.no_args # define AP_NO_ARGS func.no_args
/** This configuration directive will handle it's own parsing of arguments*/ /** This configuration directive will handle its own parsing of arguments*/
# define AP_RAW_ARGS func.raw_args # define AP_RAW_ARGS func.raw_args
/** This configuration directive will handle it's own parsing of arguments*/ /** This configuration directive will handle its own parsing of arguments*/
# define AP_TAKE_ARGV func.take_argv # define AP_TAKE_ARGV func.take_argv
/** This configuration directive takes 1 argument*/ /** This configuration directive takes 1 argument*/
# define AP_TAKE1 func.take1 # define AP_TAKE1 func.take1

View File

@@ -1340,7 +1340,7 @@ static void note_digest_auth_failure(request_rec *r,
/* don't send domain /* don't send domain
* - for proxy requests * - for proxy requests
* - if it's no specified * - if it's not specified
*/ */
if (r->proxyreq || !conf->uri_list) { if (r->proxyreq || !conf->uri_list) {
domain = NULL; domain = NULL;

View File

@@ -257,7 +257,7 @@ typedef int (APR_THREAD_FUNC *PFN_TERMINATEEXTENSION)(apr_uint32_t flags);
/* Module may return 0 if passed HSE_TERM_ADVISORY_UNLOAD, and the module /* Module may return 0 if passed HSE_TERM_ADVISORY_UNLOAD, and the module
* will remain loaded, or 1 if it consents to being unloaded. If the module * will remain loaded, or 1 if it consents to being unloaded. If the module
* is passed HSE_TERM_MUST_UNLOAD, it's return value is ignored. * is passed HSE_TERM_MUST_UNLOAD, its return value is ignored.
*/ */
#define HSE_TERM_MUST_UNLOAD 1 #define HSE_TERM_MUST_UNLOAD 1
#define HSE_TERM_ADVISORY_UNLOAD 2 #define HSE_TERM_ADVISORY_UNLOAD 2

View File

@@ -141,7 +141,7 @@ void cache_pq_print(cache_pqueue_t *q,
cache_pqueue_print_entry print); cache_pqueue_print_entry print);
/** /**
* dump the queue and it's internal structure * dump the queue and its internal structure
* @internal * @internal
* debug function only * debug function only
* @param q the queue * @param q the queue

View File

@@ -306,7 +306,7 @@ static apr_status_t sed_response_filter(ap_filter_t *f,
* sed_write_output which will add the output to ctx->bb. At the end of * sed_write_output which will add the output to ctx->bb. At the end of
* the loop, ctx->bb is passed to the next filter in chain. At the end of * the loop, ctx->bb is passed to the next filter in chain. At the end of
* the data, if new line is not found then sed_eval_buffer will store the * the data, if new line is not found then sed_eval_buffer will store the
* data in it's own buffer. * data in its own buffer.
* *
* Once eos bucket is found then sed_finalize_eval will flush the rest of * Once eos bucket is found then sed_finalize_eval will flush the rest of
* the data. If there is no new line in last line of data, new line is * the data. If there is no new line in last line of data, new line is
@@ -424,7 +424,7 @@ static apr_status_t sed_request_filter(ap_filter_t *f,
/* Here is the logic : /* Here is the logic :
* Read the readbytes data from next level fiter into bbinp. Loop through * Read the readbytes data from next level fiter into bbinp. Loop through
* the buckets in bbinp and read the data from buckets and invoke * the buckets in bbinp and read the data from buckets and invoke
* sed_eval_buffer on the data. libsed will generate it's output using * sed_eval_buffer on the data. libsed will generate its output using
* sed_write_output which will add data in ctx->bb. Do it until it have * sed_write_output which will add data in ctx->bb. Do it until it have
* atleast one bucket bucket in ctx->bb. At the end of data eos bucket * atleast one bucket bucket in ctx->bb. At the end of data eos bucket
* should be there. * should be there.

View File

@@ -371,7 +371,7 @@ void ap_process_request(request_rec *r)
* valuable for detecting clients with broken network * valuable for detecting clients with broken network
* connections or possible DoS attacks. * connections or possible DoS attacks.
* *
* It is still save to use r / r->pool here as the eor bucket * It is still safe to use r / r->pool here as the eor bucket
* could not have been destroyed in the event of a timeout. * could not have been destroyed in the event of a timeout.
*/ */
ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r, ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,

View File

@@ -192,7 +192,7 @@ static apr_status_t uldap_connection_unbind(void *param)
* Clean up an LDAP connection by unbinding and unlocking the connection. * Clean up an LDAP connection by unbinding and unlocking the connection.
* This cleanup does not remove the util_ldap_connection_t from the * This cleanup does not remove the util_ldap_connection_t from the
* per-virtualhost list of connections, does not remove the storage * per-virtualhost list of connections, does not remove the storage
* for the util_ldap_connection_t or it's data, and is NOT run automatically. * for the util_ldap_connection_t or its data, and is NOT run automatically.
*/ */
static apr_status_t uldap_connection_cleanup(void *param) static apr_status_t uldap_connection_cleanup(void *param)
{ {

View File

@@ -67,7 +67,7 @@ static const char *set_worker_param(apr_pool_t *p,
*/ */
worker->s->lbfactor = atoi(val); worker->s->lbfactor = atoi(val);
if (worker->s->lbfactor < 1 || worker->s->lbfactor > 100) if (worker->s->lbfactor < 1 || worker->s->lbfactor > 100)
return "LoadFactor must be number between 1..100"; return "LoadFactor must be a number between 1..100";
} }
else if (!strcasecmp(key, "retry")) { else if (!strcasecmp(key, "retry")) {
/* If set it will give the retry timeout for the worker /* If set it will give the retry timeout for the worker

View File

@@ -149,7 +149,7 @@ static char *get_path_param(apr_pool_t *pool, char *url,
path += strlen(name); path += strlen(name);
if (*path == '=') { if (*path == '=') {
/* /*
* Session path was found, get it's value * Session path was found, get its value
*/ */
++path; ++path;
if (*path) { if (*path) {
@@ -180,7 +180,7 @@ static char *get_cookie_param(request_rec *r, const char *name)
++start_cookie; ++start_cookie;
if (*start_cookie++ == '=' && *start_cookie) { if (*start_cookie++ == '=' && *start_cookie) {
/* /*
* Session cookie was found, get it's value * Session cookie was found, get its value
*/ */
char *end_cookie, *cookie; char *end_cookie, *cookie;
cookie = apr_pstrdup(r->pool, start_cookie); cookie = apr_pstrdup(r->pool, start_cookie);
@@ -654,7 +654,7 @@ static void recalc_factors(proxy_balancer *balancer)
/* Recalculate lbfactors */ /* Recalculate lbfactors */
workers = (proxy_worker **)balancer->workers->elts; workers = (proxy_worker **)balancer->workers->elts;
/* Special case if there is only one worker it's /* Special case if there is only one worker its
* load factor will always be 1 * load factor will always be 1
*/ */
if (balancer->workers->nelts == 1) { if (balancer->workers->nelts == 1) {

View File

@@ -1610,7 +1610,7 @@ int ssl_callback_SSLVerify_CRL(int ok, X509_STORE_CTX *ctx, conn_rec *c)
* We come through this procedure for each certificate in the certificate * We come through this procedure for each certificate in the certificate
* chain, starting with the root-CA's certificate. At each step we've to * chain, starting with the root-CA's certificate. At each step we've to
* both verify the signature on the CRL (to make sure it's a valid CRL) * both verify the signature on the CRL (to make sure it's a valid CRL)
* and it's revocation list (to make sure the current certificate isn't * and its revocation list (to make sure the current certificate isn't
* revoked). But because to check the signature on the CRL we need the * revoked). But because to check the signature on the CRL we need the
* public key of the issuing CA certificate (which was already processed * public key of the issuing CA certificate (which was already processed
* one round before), we've a little problem. But we can both solve it and * one round before), we've a little problem. But we can both solve it and
@@ -1634,7 +1634,7 @@ int ssl_callback_SSLVerify_CRL(int ok, X509_STORE_CTX *ctx, conn_rec *c)
/* /*
* Try to retrieve a CRL corresponding to the _subject_ of * Try to retrieve a CRL corresponding to the _subject_ of
* the current certificate in order to verify it's integrity. * the current certificate in order to verify its integrity.
*/ */
memset((char *)&obj, 0, sizeof(obj)); memset((char *)&obj, 0, sizeof(obj));
rc = SSL_X509_STORE_lookup(mctx->crl, rc = SSL_X509_STORE_lookup(mctx->crl,

View File

@@ -813,7 +813,7 @@ int ssl_pphrase_Handle_CB(char *buf, int bufsize, int verify, void *srv)
*cppPassPhraseCur = apr_pstrdup(p, buf); *cppPassPhraseCur = apr_pstrdup(p, buf);
/* /*
* And return it's length to OpenSSL... * And return its length to OpenSSL...
*/ */
return (len); return (len);
} }

View File

@@ -231,7 +231,7 @@ static void *merge_core_dir_configs(apr_pool_t *a, void *basev, void *newv)
conf->response_code_strings = new->response_code_strings; conf->response_code_strings = new->response_code_strings;
} }
else if (new->response_code_strings != NULL) { else if (new->response_code_strings != NULL) {
/* If we merge, the merge-result must have it's own array /* If we merge, the merge-result must have its own array
*/ */
conf->response_code_strings = apr_pmemdup(a, conf->response_code_strings = apr_pmemdup(a,
base->response_code_strings, base->response_code_strings,
@@ -297,7 +297,7 @@ static void *merge_core_dir_configs(apr_pool_t *a, void *basev, void *newv)
conf->sec_file = new->sec_file; conf->sec_file = new->sec_file;
} }
else if (new->sec_file) { else if (new->sec_file) {
/* If we merge, the merge-result must have it's own array /* If we merge, the merge-result must have its own array
*/ */
conf->sec_file = apr_array_append(a, base->sec_file, new->sec_file); conf->sec_file = apr_array_append(a, base->sec_file, new->sec_file);
} }
@@ -308,7 +308,7 @@ static void *merge_core_dir_configs(apr_pool_t *a, void *basev, void *newv)
conf->sec_if = new->sec_if; conf->sec_if = new->sec_if;
} }
else if (new->sec_if) { else if (new->sec_if) {
/* If we merge, the merge-result must have it's own array /* If we merge, the merge-result must have its own array
*/ */
conf->sec_if = apr_array_append(a, base->sec_if, new->sec_if); conf->sec_if = apr_array_append(a, base->sec_if, new->sec_if);
} }

View File

@@ -291,7 +291,7 @@ static int ReportStatusToSCMgr(int currentState, int waitHint,
} }
/* Note this works on Win2000 and later due to ChangeServiceConfig2 /* Note this works on Win2000 and later due to ChangeServiceConfig2
* Continue to test it's existence, but at least drop the feature * Continue to test its existence, but at least drop the feature
* of revising service description tags prior to Win2000. * of revising service description tags prior to Win2000.
*/ */