From a4f609d87c7eb29e37c7900d0cb40b7fd79fc84e Mon Sep 17 00:00:00 2001 From: Omer Ben-Amram Date: Mon, 3 Jun 2019 16:52:00 +0300 Subject: tiny things --- README.md | 2 +- src/bin/mft_dump.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 449cf9a..b425151 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ The main binary utility provided with this crate is `mft_dump`, and it provides Some examples - `mft_dump ` will dump contents of mft entries as JSON. - `mft_dump -o csv ` will dump contents of mft entries as CSV. - - `mft_dump -e -o json ` will extract all resident streams in MFT to files. + - `mft_dump --extract-resident-streams -o json ` will extract all resident streams in MFT to files in . # Library usage: ```rust,no_run diff --git a/src/bin/mft_dump.rs b/src/bin/mft_dump.rs index 7815da1..28829e3 100644 --- a/src/bin/mft_dump.rs +++ b/src/bin/mft_dump.rs @@ -18,7 +18,7 @@ use std::process::exit; use std::{fs, io, path}; -/// Simple error macro for use inside of internal errors in `EvtxDump` +/// Simple error macro for use inside of internal errors in `MftDump` macro_rules! err { ($($tt:tt)*) => { Err(Box::::from(format!($($tt)*))) } } -- cgit v1.2.3