Codebase list stealth / 10e13bd
Imported Upstream version 2.11.02 tony mancill 11 years ago
4 changed file(s) with 14 addition(s) and 16 deletion(s). Raw diff Collapse all Expand all
0 #define VERSION "2.11.01"
0 #define VERSION "2.11.02"
11 #define YEARS "2005-2013"
0 stealth (2.11.02)
1
2 * Stealth returns 0 for options --help and --version
3
4 * Catching Errno exceptions is replaced by catching std::exception
5 exceptions
6
7 -- Frank B. Brokken <f.b.brokken@rug.nl> Fri, 25 Jan 2013 11:15:36 +0100
8
09 stealth (2.11.01)
110
211 * Construction of ps and pdf versions of the stealth manual was accidenally
4141
4242 return 0;
4343 }
44 catch(Errno &e)
44 catch(exception const &e)
4545 {
46 cerr << "Exception " << e.why() << "\n";
46 cerr << "Exception " << e.what() << "\n";
4747 return 1;
4848 }
4949 }
5050 monitor.control(); // control the scanning process,
5151 // run all the Scanner's tests
5252 }
53 catch (Errno const &err)
53 catch (exception const &err)
5454 {
55 if (err.which())
56 cerr << err.why() << '\n';
57 return err.which();
58 }
59 catch (exception const &ex)
60 {
61 cerr << "\n"
62 "Stealth terminated with an exception `" << ex.what() << "'\n" <<
63 "This should not have happened, please report this error and the "
64 "circumstances\n"
65 "causing it to Stealth's author\n";
66
55 cerr << err.what() << '\n';
6756 return 1;
6857 }
6958 catch (int ret)