diff options
Diffstat (limited to 'source/tools/pdfclean.c')
-rw-r--r-- | source/tools/pdfclean.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source/tools/pdfclean.c b/source/tools/pdfclean.c index 6d5a69be..0e7a464a 100644 --- a/source/tools/pdfclean.c +++ b/source/tools/pdfclean.c @@ -51,7 +51,7 @@ int pdfclean_main(int argc, char **argv) opts.continue_on_error = 1; opts.errors = &errors; - while ((c = fz_getopt(argc, argv, "adfgilp:scz")) != -1) + while ((c = fz_getopt(argc, argv, "adfgilp:sczD")) != -1) { switch (c) { @@ -66,6 +66,7 @@ int pdfclean_main(int argc, char **argv) case 'l': opts.do_linear += 1; break; case 'c': opts.do_clean += 1; break; case 's': opts.do_sanitize += 1; break; + case 'D': opts.do_decrypt += 1; break; default: usage(); break; } } |