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:
@ -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();
|
||||
|
||||
|
Reference in New Issue
Block a user