Changes by: flatcap
Update of /cvsroot/linux-ntfs/linux-ntfs/ntfstools
In directory usw-pr-cvs1:/tmp/cvs-serv26680
Modified Files:
ntfsundelete.c
Log Message:
another reminder
Index: ntfsundelete.c
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/ntfstools/ntfsundelete.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -U2 -r1.2 -r1.3
--- ntfsundelete.c 1 Jul 2002 13:30:28 -0000 1.2
+++ ntfsundelete.c 3 Jul 2002 11:03:12 -0000 1.3
@@ -94,4 +94,5 @@
// " -c range --copy range Write a range of MFT records to a file\n"
// "\n"
+ // " -f --force Use less caution\n"
" -v --verbose More output\n"
" -V --version Version information\n"
@@ -111,5 +112,5 @@
int parse_options (int argc, char *argv[])
{
- const char *sopt = "-su:p:d:vVh"; // "-su:n:ad:o:p:b:m:iS:c:vVh";
+ const char *sopt = "-su:p:d:vVh"; // "-su:n:ad:o:p:b:m:iS:c:fvVh";
const struct option lopt[] = {
{ "scan", no_argument, NULL, 's' },
@@ -125,4 +126,5 @@
// { "size", required_argument, NULL, 'S' },
// { "copy", required_argument, NULL, 'c' },
+ // { "force", no_argument, NULL, 'f' },
{ "verbose", no_argument, NULL, 'v' },
{ "version", no_argument, NULL, 'V' },
|