summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mg_db_gd_pg.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/mg_db_gd_pg.c b/mg_db_gd_pg.c
index 2c9a51b..566ad9b 100644
--- a/mg_db_gd_pg.c
+++ b/mg_db_gd_pg.c
@@ -103,9 +103,12 @@ mgDbGd::HelpText() const
return
" -h HHHH, --host=HHHH specify database host (default is localhost)\n"
" -s SSSS --socket=PATH specify database socket\n"
- " -p PPPP, --port=PPPP specify port of database server (default is )\n"
- " -u UUUU, --user=UUUU specify database user (default is )\n"
- " -w WWWW, --password=WWWW specify database password (default is empty)\n";
+ " -p PPPP, --port=PPPP specify port of database server\n"
+ " -u UUUU, --user=UUUU specify database user (default is current login name)\n"
+ " -w WWWW, --password=WWWW specify database password (default is empty)\n"
+ "\n"
+ " if the database runs on the same computer you should only need -u and -w if\n"
+ " at all, see README.postgresql\n";
}
mgDb* GenerateDB(bool SeparateThread)