Skip to content

Commit a939922

Browse files
committed
Merge branch 'xamanu-spelling-errors'
2 parents 6fbf575 + a2696f3 commit a939922

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/renderd.1

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
@@ -688,7 +688,7 @@ int main(int argc, char **argv)
688688
syslog(LOG_ERR, "Failed to initialise request queue");
689689
exit(1);
690690
}
691-
syslog(LOG_ERR, "Initiating reqyest_queue");
691+
syslog(LOG_ERR, "Initiating request_queue");
692692

693693
xmlconfigitem maps[XMLCONFIGS_MAX];
694694
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)