]> saetta.ns0.it Git - zakauthe/libzakauthe/commitdiff
Trying aute_autentica if aute_autentica_get_password isn't present in plugin. gtk2 v0.1.1
authorAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Tue, 15 Oct 2013 16:06:49 +0000 (18:06 +0200)
committerAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Tue, 15 Oct 2013 16:06:49 +0000 (18:06 +0200)
src/aute.c

index 6004d63eb452a8760a38d32b5056dd86933fff51..2c4d3288dd36522530f089e6a2644ecfb8b85fd4 100644 (file)
@@ -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)