diff options
author | Christophe Grenier <grenier@cgsecurity.org> | 2015-09-03 07:41:52 +0200 |
---|---|---|
committer | Christophe Grenier <grenier@cgsecurity.org> | 2015-09-03 07:41:52 +0200 |
commit | 66c666607b135c6b1aca9d28c417921a2d6bdad0 (patch) | |
tree | 7d2540ae8c757fdbc1cb968f0527f9ed20e004bc /src/file_list.c | |
parent | 730bbbe88e3e344c55310e3a78f4fc204b5ad5d4 (diff) |
PhotoRec: recover Apple Desktop Services Store DS_Store files
Diffstat (limited to 'src/file_list.c')
-rw-r--r-- | src/file_list.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/file_list.c b/src/file_list.c index f81571b..33fb4a0 100644 --- a/src/file_list.c +++ b/src/file_list.c @@ -97,6 +97,7 @@ extern const file_hint_t file_hint_doc; extern const file_hint_t file_hint_dpx; extern const file_hint_t file_hint_drw; extern const file_hint_t file_hint_ds2; +extern const file_hint_t file_hint_ds_store; extern const file_hint_t file_hint_dsc; extern const file_hint_t file_hint_dss; extern const file_hint_t file_hint_dta; @@ -392,6 +393,7 @@ file_enable_t list_file_enable[]= { .enable=0, .file_hint=&file_hint_doc }, { .enable=0, .file_hint=&file_hint_dpx }, { .enable=0, .file_hint=&file_hint_ds2 }, + { .enable=0, .file_hint=&file_hint_ds_store }, { .enable=0, .file_hint=&file_hint_dsc }, { .enable=0, .file_hint=&file_hint_dss }, { .enable=0, .file_hint=&file_hint_dta }, |