diff options
author | grothoff <grothoff@140774ce-b5e7-0310-ab8b-a85725594a96> | 2010-01-03 21:42:52 +0000 |
---|---|---|
committer | grothoff <grothoff@140774ce-b5e7-0310-ab8b-a85725594a96> | 2010-01-03 21:42:52 +0000 |
commit | a43607c6a232ab107da3a1f6fcb80f3271fbdb3a (patch) | |
tree | 697ff622324a7d259dc59da63205f398661a56fa /src/fs/fs_file_information.c | |
parent | 441813d96b16892025212193c2767fc4d01a9589 (diff) |
adapting main code base to work with libextractor 0.6 API; testcases will follow later
git-svn-id: https://gnunet.org/svn/gnunet@9959 140774ce-b5e7-0310-ab8b-a85725594a96
Diffstat (limited to 'src/fs/fs_file_information.c')
-rw-r--r-- | src/fs/fs_file_information.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fs/fs_file_information.c b/src/fs/fs_file_information.c index c28635198e..9c193f88be 100644 --- a/src/fs/fs_file_information.c +++ b/src/fs/fs_file_information.c @@ -364,7 +364,7 @@ struct DirScanCls /** * Metadata extractors to use. */ - struct EXTRACTOR_Extractor *extractors; + struct EXTRACTOR_PluginList *extractors; /** * Function to call on each directory entry. @@ -518,7 +518,7 @@ GNUNET_FS_directory_scanner_default (void *cls, void *proc_cls, char **emsg) { - struct EXTRACTOR_Extractor *ex = cls; + struct EXTRACTOR_PluginList *ex = cls; struct DirScanCls dsc; dsc.extractors = ex; |