diff options
Diffstat (limited to '')
-rw-r--r-- | tools/ChangeLog | 4 | ||||
-rw-r--r-- | tools/gpgtar-extract.c | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/tools/ChangeLog b/tools/ChangeLog index 23cc85abe..93e5e1074 100644 --- a/tools/ChangeLog +++ b/tools/ChangeLog @@ -1,7 +1,9 @@ 2010-08-25 Werner Koch <[email protected]> - * gpgtar.c: Add -t as short option for --list-archive. + * gpgtar-extract.c (create_directory): Add .p7m as known + extension. + * gpgtar.c: Add -t as short option for --list-archive. * gpgtar-extract.c (gpgtar_extract): Use filename "-" for stdin. Fix dirprefix setting. * gpgtar-list.c (gpgtar_list): Ditto. diff --git a/tools/gpgtar-extract.c b/tools/gpgtar-extract.c index af8d1aeb7..bd5b3a432 100644 --- a/tools/gpgtar-extract.c +++ b/tools/gpgtar-extract.c @@ -212,6 +212,7 @@ create_directory (const char *dirprefix) || !compare_filenames (dirprefix + n - 4, EXTSEP_S "pgp") || !compare_filenames (dirprefix + n - 4, EXTSEP_S "asc") || !compare_filenames (dirprefix + n - 4, EXTSEP_S "pem") + || !compare_filenames (dirprefix + n - 4, EXTSEP_S "p7m") || !compare_filenames (dirprefix + n - 4, EXTSEP_S "p7e"))) { prefix_buffer = xtrystrdup (dirprefix); |