Fix -w and -W options. They were inverted.
This commit is contained in:
@ -8,7 +8,7 @@
|
||||
* @brief Client Modules
|
||||
*/
|
||||
|
||||
const char *PROGRAM_VERSION = "1.1.2";
|
||||
const char *PROGRAM_VERSION = "1.1.3";
|
||||
const char *PROGRAM_URL = "http://reorg.projects.postgresql.org/";
|
||||
const char *PROGRAM_EMAIL = "reorg-general@lists.pgfoundry.org";
|
||||
|
||||
|
@ -475,8 +475,8 @@ static pgut_option default_options[] =
|
||||
{ 's', 'h', "host" , &host },
|
||||
{ 's', 'p', "port" , &port },
|
||||
{ 's', 'U', "username" , &username },
|
||||
{ 'y', 'w', "no-password" , &prompt_password },
|
||||
{ 'Y', 'W', "password" , &prompt_password },
|
||||
{ 'Y', 'w', "no-password" , &prompt_password },
|
||||
{ 'y', 'W', "password" , &prompt_password },
|
||||
{ 0 }
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user