~ubuntu-branches/ubuntu/utopic/libgda5/utopic

« back to all changes in this revision

Viewing changes to libgda/sqlite/virtual/gda-ldap-connection.c

  • Committer: Package Import Robot
  • Author(s): Michael Biebl
  • Date: 2012-02-10 13:43:47 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20120210134347-pnhy092ghuopf2gm
Tags: 5.0.3-1
* New upstream release.
* Add symbols file for libgda-5.0-4.

Show diffs side-by-side

added added

removed removed

Lines of Context:
770
770
        if (specs && ! g_slist_find (cnc->priv->maps, specs)) {
771
771
                g_set_error (error, GDA_SERVER_PROVIDER_ERROR,
772
772
                             GDA_SERVER_PROVIDER_MISUSE_ERROR,
773
 
                             _("Can't remove non LDAP virtual table"));
 
773
                             "%s", _("Can't remove non LDAP virtual table"));
774
774
                return FALSE;
775
775
        }
776
776
        return gda_vconnection_data_model_remove (GDA_VCONNECTION_DATA_MODEL (cnc), table_name, error);
818
818
        if (specs && ! g_slist_find (cnc->priv->maps, specs)) {
819
819
                g_set_error (error, GDA_SERVER_PROVIDER_ERROR,
820
820
                             GDA_SERVER_PROVIDER_MISUSE_ERROR,
821
 
                             _("Can't describe non LDAP virtual table"));
 
821
                             "%s", _("Can't describe non LDAP virtual table"));
822
822
                return FALSE;
823
823
        }
824
824
        
825
825
        if (!specs) {
826
826
                g_set_error (error, GDA_SERVER_PROVIDER_ERROR,
827
827
                             GDA_SERVER_PROVIDER_MISUSE_ERROR,
828
 
                             _("Unknown LDAP virtual table"));
 
828
                             "%s", _("Unknown LDAP virtual table"));
829
829
                return FALSE;
830
830
        }
831
831