]> saetta.ns0.it Git - zakconfi/libzakconfi/commitdiff
Plg. file: ignore CONFI_NAME in connection string.
authorAndrea Zagli <azagli@libero.it>
Sat, 8 Oct 2016 09:36:57 +0000 (11:36 +0200)
committerAndrea Zagli <azagli@libero.it>
Sat, 8 Oct 2016 09:36:57 +0000 (11:36 +0200)
plugins/file/plgfile.c

index 4634fb9e87e32d7d7fbb0f6b74dbcfa5d0633554..1b35385ef440375b5f8287af7145a50b6aded3fe 100644 (file)
@@ -163,12 +163,35 @@ zak_confi_file_plugin_initialize (ZakConfiPluggable *pluggable, const gchar *cnc
 {
        gboolean ret;
        GError *error;
+       gchar *strconfname;
+       gchar *strconfnameend;
+       gchar *cncstringnew;
 
        ZakConfiFilePlugin *plugin = ZAK_CONFI_FILE_PLUGIN (pluggable);
        ZakConfiFilePluginPrivate *priv = ZAK_CONFI_FILE_PLUGIN_GET_PRIVATE (plugin);
 
        priv->cnc_string = g_strdup (cnc_string);
 
+       strconfname = g_strstr_len (priv->cnc_string, -1, ";CONFI_NAME");
+       if (strconfname != NULL)
+               {
+                       /* ignore CONFI_NAME parameter on connection string */
+                       strconfnameend = g_strstr_len (strconfname + 1, -1, ";");
+                       if (strconfnameend == NULL)
+                               {
+                                       priv->cnc_string[strlen (priv->cnc_string) - strlen (strconfname)] = '\0';
+                               }
+                       else
+                               {
+                                       cncstringnew = g_strdup_printf ("%s%s",
+                                                                                                       g_strndup (priv->cnc_string, strlen (priv->cnc_string) - strlen (strconfname)),
+                                                                                                       g_strdup (strconfnameend));
+                                       g_free (priv->cnc_string);
+                                       priv->cnc_string = g_strdup (cncstringnew);
+                                       g_free (cncstringnew);
+                               }
+               }
+
        priv->kfile = g_key_file_new ();
        error = NULL;
        if (g_key_file_load_from_file (priv->kfile, priv->cnc_string, G_KEY_FILE_KEEP_COMMENTS | G_KEY_FILE_KEEP_TRANSLATIONS, &error)