fix minor issues caught in debian packaging relating to executable status and spelling
0
bindings/python/mapnik/ogcserver/modserver.py
Executable file → Normal file
0
demo/viewer/images/about.png
Executable file → Normal file
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 3.8 KiB |
0
demo/viewer/images/down.png
Executable file → Normal file
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 4.7 KiB |
0
demo/viewer/images/home.png
Executable file → Normal file
Before Width: | Height: | Size: 4.4 KiB After Width: | Height: | Size: 4.4 KiB |
0
demo/viewer/images/right.png
Executable file → Normal file
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 3.7 KiB |
0
demo/viewer/images/up.png
Executable file → Normal file
Before Width: | Height: | Size: 4.6 KiB After Width: | Height: | Size: 4.6 KiB |
|
@ -82,10 +82,10 @@ kismet_datasource::kismet_datasource(parameters const& params)
|
|||
//cout << "kismet_datasource::kismet_datasource()" << endl;
|
||||
|
||||
boost::optional<std::string> host = params.get<std::string>("host");
|
||||
if (!host) throw datasource_exception("missing <host> paramater");
|
||||
if (!host) throw datasource_exception("missing <host> parameter");
|
||||
|
||||
boost::optional<std::string> port = params.get<std::string>("port");
|
||||
if (!port) throw datasource_exception("missing <port> paramater");
|
||||
if (!port) throw datasource_exception("missing <port> parameter");
|
||||
|
||||
unsigned int portnr = atoi ((*port).c_str () );
|
||||
kismet_thread.reset (new boost::thread (boost::bind (&kismet_datasource::run, this, *host, portnr)));
|
||||
|
|