1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: Fix 'overrided' typo, replace with 'overridden'.
Author: Bas Couwenberg <sebastic@debian.org>
Forwarded: https://github.com/mapserver/mapcache/pull/141
Applied-Upstream: https://github.com/mapserver/mapcache/commit/ac20472ef5385bf205c500a4f6793453ecaddac5
--- a/util/mapcache_seed.c
+++ b/util/mapcache_seed.c
@@ -1153,7 +1153,7 @@ int main(int argc, const char **argv)
if(cache_override) {
mapcache_cache *co = mapcache_configuration_get_cache(cfg, cache_override);
if(!co) {
- return usage(argv[0], "overrided cache\"%s\" to not found in configuration", cache_override);
+ return usage(argv[0], "overridden cache\"%s\" not found in configuration", cache_override);
} else {
tileset->_cache = co;
}
|