Fix postgres access_method

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@12019 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Neil Williams 2005-11-22 23:00:32 +00:00
parent bb7f8e681e
commit b71b839bbf
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-11-22 Neil Williams <linux@codehelp.co.uk>
* src/backend/postgres/PostgresBackend.c : Correct
postgres access_method.
2005-11-22 Neil Williams <linux@codehelp.co.uk>
* configure.in : Remove net and RPC backends,

View File

@ -2551,7 +2551,7 @@ void pgend_provider_init(void)
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;