aboutsummaryrefslogtreecommitdiff
path: root/src/opts.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/opts.c')
-rw-r--r--src/opts.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/opts.c b/src/opts.c
index 416163c..aca6e83 100644
--- a/src/opts.c
+++ b/src/opts.c
@@ -1,6 +1,6 @@
#include "unalf.h"
-#define OPTIONS "aefklLopqtvVd:x:"
+#define OPTIONS "aefklLopqtTvVd:x:"
/* uncomment to test exclude/include glob lists */
// #define DEBUG_GLOBS
@@ -44,6 +44,7 @@ void parse_opts(int argc, char * const *argv) {
case 'p': opts.extract_to_stdout++; opts.quiet++; break;
case 'q': opts.quiet++; break;
case 't': opts.testonly++; opts.listonly = 0; break;
+ case 'T': opts.ignore_datetime = 1; break;
case 'v': opts.listonly = 1; opts.testonly = 0; opts.verbose_list++; break;
case 'V': puts(VERSION); exit(0); break;
case 'd': opts.outdir = optarg; break;