diff options
Diffstat (limited to 'src/format')
-rw-r--r-- | src/format/format.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/format/format.c b/src/format/format.c index 8e1b9f4..e710668 100644 --- a/src/format/format.c +++ b/src/format/format.c @@ -519,14 +519,15 @@ GBinFormat *load_new_format(FormatType type, const char *filename, bin_t **conte tmp = strdup(filename); - pglist = get_all_plugins_for_action(PGA_FORMAT_MATCHER, &pgcount); + pgcount = 0; + pglist = NULL;//get_all_plugins_for_action(PGA_FORMAT_MATCHER, &pgcount); if (pgcount > 0) { lnf_rescan: for (i = 0; i < pgcount; i++) - switch (g_plugin_module_is_matching(pglist[i], &tmp, content, length)) + switch (0/*g_plugin_module_is_matching(pglist[i], &tmp, content, length)*/) { case MFA_MATCHED: /* FIXME */ |