diff options
Diffstat (limited to 'plugins/elf/core.c')
| -rw-r--r-- | plugins/elf/core.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/elf/core.c b/plugins/elf/core.c index 03d5964..1fefa69 100644 --- a/plugins/elf/core.c +++ b/plugins/elf/core.c @@ -66,7 +66,7 @@ G_MODULE_EXPORT bool chrysalide_plugin_init(GPluginModule *plugin)  *  Paramètres  : plugin  = greffon à manipuler.                               *  *                action  = type d'action attendue.                            *  *                content = contenu binaire à traiter.                         * -*                gid     = identifiant du groupe de traitement.               * +*                wid     = identifiant du groupe de traitement.               *  *                status  = barre de statut à tenir informée.                  *  *                                                                             *  *  Description : Procède à une opération liée à un contenu binaire.           * @@ -77,7 +77,7 @@ G_MODULE_EXPORT bool chrysalide_plugin_init(GPluginModule *plugin)  *                                                                             *  ******************************************************************************/ -G_MODULE_EXPORT void chrysalide_plugin_handle_binary_content(const GPluginModule *plugin, PluginAction action, GBinContent *content, gid_t gid, GtkStatusStack *status) +G_MODULE_EXPORT void chrysalide_plugin_handle_binary_content(const GPluginModule *plugin, PluginAction action, GBinContent *content, wgroup_id_t wid, GtkStatusStack *status)  {      bool test;                              /* Bilan des accès mémoire     */      GExeFormat *format;                     /* Format ELF reconnu          */ @@ -92,7 +92,7 @@ G_MODULE_EXPORT void chrysalide_plugin_handle_binary_content(const GPluginModule          loaded = g_loaded_binary_new(format);          resolver = get_current_content_resolver(); -        g_content_resolver_add_detected(resolver, gid, loaded); +        g_content_resolver_add_detected(resolver, wid, loaded);          g_object_unref(G_OBJECT(resolver));      }  | 
