1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-27 12:41:57 +03:00

More libpgeasy update of connectdb() parameter ordering

This commit is contained in:
Bruce Momjian
2000-04-28 15:03:39 +00:00
parent 7aa443d01e
commit 96d643e5d5
3 changed files with 4 additions and 2 deletions

View File

@ -26,7 +26,7 @@ main(int argc, char **argv)
if (argc != 2)
halt("Usage: %s database\n", argv[0]);
connectdb(argv[1], NULL, NULL, NULL, NULL);
connectdb(NULL, NULL, NULL, NULL, argv[1]);
on_error_continue();
on_error_stop();