[Gnucash-changes] r12019 - gnucash/trunk - Fix postgres access_method

Neil Williams codehelp at cvs.gnucash.org
Tue Nov 22 18:00:33 EST 2005


Author: codehelp
Date: 2005-11-22 18:00:32 -0500 (Tue, 22 Nov 2005)
New Revision: 12019
Trac: http://svn.gnucash.org/trac/changeset/12019

Modified:
   gnucash/trunk/ChangeLog
   gnucash/trunk/src/backend/postgres/PostgresBackend.c
Log:
Fix postgres access_method

Modified: gnucash/trunk/ChangeLog
===================================================================
--- gnucash/trunk/ChangeLog	2005-11-22 22:54:04 UTC (rev 12018)
+++ gnucash/trunk/ChangeLog	2005-11-22 23:00:32 UTC (rev 12019)
@@ -1,5 +1,10 @@
 2005-11-22  Neil Williams <linux at codehelp.co.uk>
 
+	* src/backend/postgres/PostgresBackend.c : Correct
+	postgres access_method.
+
+2005-11-22  Neil Williams <linux at codehelp.co.uk>
+
 	* configure.in : Remove net and RPC backends,
 	Tidy up --with and --enable output to --help
 	* po/POTFILES.in : Remove RPC and net related files.

Modified: gnucash/trunk/src/backend/postgres/PostgresBackend.c
===================================================================
--- gnucash/trunk/src/backend/postgres/PostgresBackend.c	2005-11-22 22:54:04 UTC (rev 12018)
+++ gnucash/trunk/src/backend/postgres/PostgresBackend.c	2005-11-22 23:00:32 UTC (rev 12019)
@@ -2551,7 +2551,7 @@
 
 	prov = g_new0(QofBackendProvider, 1);
 	prov->provider_name = "The Postgres backend for Gnucash";
-	prov->access_method = "sql";
+	prov->access_method = "postgres";
 	prov->partial_book_supported = FALSE;
 	prov->backend_new = pgendNew;
 	prov->provider_free = pg_provider_free;



More information about the gnucash-changes mailing list