fix minor issues caught in debian packaging relating to executable status and spelling

This commit is contained in:
Dane Springmeyer 2010-02-21 17:28:01 +00:00
parent e77ff7bd11
commit 67a8f33da9
7 changed files with 2 additions and 2 deletions

0
bindings/python/mapnik/ogcserver/modserver.py Executable file → Normal file
View file

0
demo/viewer/images/about.png Executable file → Normal file
View 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
View 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
View 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
View 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
View file

Before

Width:  |  Height:  |  Size: 4.6 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

View file

@ -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)));