Fix spelling errors.

* recieve   -> receive
* accross   -> across
* determins -> determines
* reqyest   -> request

Gbp-Pq: Name spelling-errors.patch
This commit is contained in:
Bas Couwenberg
2020-08-25 15:47:52 +00:00
committed by Felix Delattre
parent e25bfdba1c
commit 3a78a312ed
4 changed files with 4 additions and 4 deletions

View File

@ -30,7 +30,7 @@ Set the location of the config file used to configure the various parameters of
like the mapnik style sheet. The default is /etc/renderd.conf
.TP
\fB\-s\fR|\-\-slave
Renderd can be used in a distributed fashion accross multiple rendering servers. The master renderd handles queuing and
Renderd can be used in a distributed fashion across multiple rendering servers. The master renderd handles queuing and
passes requests to the slaves. This parameter specifies which of the slave sections of renderd.conf applies to this instance
of renderd. The default is to use the master section
.TP

View File

@ -687,7 +687,7 @@ int main(int argc, char **argv)
syslog(LOG_ERR, "Failed to initialise request queue");
exit(1);
}
syslog(LOG_ERR, "Initiating reqyest_queue");
syslog(LOG_ERR, "Initiating request_queue");
xmlconfigitem maps[XMLCONFIGS_MAX];
bzero(maps, sizeof(xmlconfigitem) * XMLCONFIGS_MAX);

View File

@ -2412,7 +2412,7 @@ static const command_rec tile_cmds[] =
mod_tile_cache_lastmod_factor_config, /* config action routine */
NULL, /* argument to include in call */
OR_OPTIONS, /* where available */
"Set the factor by which the last modified determins cache expiry" /* directive description */
"Set the factor by which the last modified determines cache expiry" /* directive description */
),
AP_INIT_TAKE2(
"ModTileCacheDurationLowZoom", /* directive name */

View File

@ -42,7 +42,7 @@ int recv_cmd(struct protocol * cmd, int fd, int block) {
return 0;
}
if ((cmd->ver > 3) || (cmd->ver < 1)) {
syslog(LOG_WARNING, "WARNING: Failed to recieve render cmd with unknown protocol version %i\n", cmd->ver);
syslog(LOG_WARNING, "WARNING: Failed to receive render cmd with unknown protocol version %i\n", cmd->ver);
return -1;
}
syslog(LOG_DEBUG, "DEBUG: Got incoming request with protocol version %i\n", cmd->ver);