From: Andrea Zagli Date: Tue, 15 Oct 2013 16:06:49 +0000 (+0200) Subject: Trying aute_autentica if aute_autentica_get_password isn't present in plugin. X-Git-Tag: v0.1.1^0 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=f7e587948297fcb9345bbba0d0243188863c8576;p=zakauthe%2Flibzakauthe Trying aute_autentica if aute_autentica_get_password isn't present in plugin. --- 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)