mirror of
https://github.com/martijnvanbrummelen/nwipe.git
synced 2026-02-20 22:15:41 +00:00
These changes solve three issues. The first issue was that it wasn't obvious that the PDFs are only created once you press return to exit after all the wipes have finished. It is now explicitly stated in the footer message if PDFs are enabled. It also now specifies the logfile name on the footer if the user has specified a log file as a command line option. If no logfile is specified then STDOUT is displayed. If the user specified --PDFreportpath=noPDF on the command line, prior to this commit it had no affect. This is now fixed so that it disables PDF's irrespective of what is in nwipe.conf. i.e command line options override the entries in nwipe.conf If the user has specified a --PDFreportpath=noPDF=/some/path then PDF's are enabled irrespective of the value in nwipe.conf
18 lines
746 B
C
18 lines
746 B
C
/**
|
|
* version_string and program_name are used by siege
|
|
* and configure; author_name and email_address are
|
|
* used by configure to dynamically assign those values
|
|
* to documentation files.
|
|
*/
|
|
const char* version_string = "0.35.5";
|
|
const char* program_name = "nwipe";
|
|
const char* author_name = "Martijn van Brummelen";
|
|
const char* email_address = "git@brumit.nl";
|
|
const char* years = "2023";
|
|
const char* copyright = "Copyright Darik Horn <dajhorn-dban@vanadac.com>\n\
|
|
Modifications to original dwipe Copyright Andy Beverley <andy@andybev.com>\n\
|
|
This is free software; see the source for copying conditions.\n\
|
|
There is NO warranty; not even for MERCHANTABILITY or FITNESS\n\
|
|
FOR A PARTICULAR PURPOSE.\n";
|
|
const char* banner = "nwipe 0.35.5";
|