Skip to content

Commit 3a78a31

Browse files
sebasticFelix Delattre
authored andcommitted
Fix spelling errors.
* recieve -> receive * accross -> across * determins -> determines * reqyest -> request Gbp-Pq: Name spelling-errors.patch
1 parent e25bfdb commit 3a78a31

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/renderd.8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Set the location of the config file used to configure the various parameters of
3030
like the mapnik style sheet. The default is /etc/renderd.conf
3131
.TP
3232
\fB\-s\fR|\-\-slave
33-
Renderd can be used in a distributed fashion accross multiple rendering servers. The master renderd handles queuing and
33+
Renderd can be used in a distributed fashion across multiple rendering servers. The master renderd handles queuing and
3434
passes requests to the slaves. This parameter specifies which of the slave sections of renderd.conf applies to this instance
3535
of renderd. The default is to use the master section
3636
.TP

src/daemon.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -687,7 +687,7 @@ int main(int argc, char **argv)
687687
syslog(LOG_ERR, "Failed to initialise request queue");
688688
exit(1);
689689
}
690-
syslog(LOG_ERR, "Initiating reqyest_queue");
690+
syslog(LOG_ERR, "Initiating request_queue");
691691

692692
xmlconfigitem maps[XMLCONFIGS_MAX];
693693
bzero(maps, sizeof(xmlconfigitem) * XMLCONFIGS_MAX);

src/mod_tile.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2412,7 +2412,7 @@ static const command_rec tile_cmds[] =
24122412
mod_tile_cache_lastmod_factor_config, /* config action routine */
24132413
NULL, /* argument to include in call */
24142414
OR_OPTIONS, /* where available */
2415-
"Set the factor by which the last modified determins cache expiry" /* directive description */
2415+
"Set the factor by which the last modified determines cache expiry" /* directive description */
24162416
),
24172417
AP_INIT_TAKE2(
24182418
"ModTileCacheDurationLowZoom", /* directive name */

src/protocol_helper.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ int recv_cmd(struct protocol * cmd, int fd, int block) {
4242
return 0;
4343
}
4444
if ((cmd->ver > 3) || (cmd->ver < 1)) {
45-
syslog(LOG_WARNING, "WARNING: Failed to recieve render cmd with unknown protocol version %i\n", cmd->ver);
45+
syslog(LOG_WARNING, "WARNING: Failed to receive render cmd with unknown protocol version %i\n", cmd->ver);
4646
return -1;
4747
}
4848
syslog(LOG_DEBUG, "DEBUG: Got incoming request with protocol version %i\n", cmd->ver);

0 commit comments

Comments
 (0)