From f7e587948297fcb9345bbba0d0243188863c8576 Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Tue, 15 Oct 2013 18:06:49 +0200 Subject: [PATCH] Trying aute_autentica if aute_autentica_get_password isn't present in plugin. --- src/aute.c | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/src/aute.c b/src/aute.c index 6004d63..2c4d328 100644 --- a/src/aute.c +++ b/src/aute.c @@ -203,12 +203,16 @@ gchar if (!g_module_symbol (priv->module, "autentica_get_password", (gpointer *)&autentica_get_password)) { /* TO DO */ - g_warning ("Error g_module_symbol\n"); - return NULL; - } + g_warning ("Error g_module_symbol: autentica_get_password.\n"); - /* calling plugin's function */ - ret = (*autentica_get_password) (priv->parameters, password); + /* try aute_autentica */ + ret = aute_autentica (aute); + } + else + { + /* calling plugin's function */ + ret = (*autentica_get_password) (priv->parameters, password); + } return ret; } @@ -312,6 +316,7 @@ aute_finalize (GObject *object) * @aute: un oggetto #Aute. * * Returns: il nome, con il percorso, del plugin. + * Returns: il nome, con il percorso, del plugin. */ gchar *aute_get_module_from_confi (Aute *aute) -- 2.49.0