diff --git a/CHANGELOG.md b/CHANGELOG.md index 20165fd..271467b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ RELEASE NOTES ============= +v0.27 +----- +- Add `verify` method to verify a disk is zero filled [#128](https://github.com/martijnvanbrummelen/nwipe/pull/128) + v0.26 ----- - Add exclude drive option (Thanks PartialVolume) diff --git a/man/nwipe.1 b/man/nwipe.1 index 359d187..ed59017 100644 --- a/man/nwipe.1 +++ b/man/nwipe.1 @@ -68,6 +68,8 @@ ops2 \- RCMP TSSIT OPS\-II random / prng / stream \- PRNG Stream .IP zero / quick \- Overwrite with zeros +.IP +verify \- Verifies disk is zero filled .TP \fB\-l\fR, \fB\-\-logfile\fR=\fIFILE\fR Filename to log to. Default is STDOUT diff --git a/src/options.c b/src/options.c index 6c69626..a175e85 100644 --- a/src/options.c +++ b/src/options.c @@ -452,8 +452,8 @@ void display_help() puts(" gutmann - Peter Gutmann's Algorithm"); puts(" ops2 - RCMP TSSIT OPS-II"); puts(" random / prng / stream - PRNG Stream"); - puts(" zero / quick - Overwrite with zeros\n"); - puts(" verify - Verifies disk is zero filled"); + puts(" zero / quick - Overwrite with zeros"); + puts(" verify - Verifies disk is zero filled\n"); puts(" -l, --logfile=FILE Filename to log to. Default is STDOUT\n"); puts(" -p, --prng=METHOD PRNG option (mersenne|twister|isaac)\n"); puts(" -r, --rounds=NUM Number of times to wipe the device using the selected");