Commit a672e965 authored by Bruce Momjian's avatar Bruce Momjian

Prompt username/password on stderr so:

     pg_dump -o -u some_db >dump_file

works.
parent e6487cc4
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.149 2000/06/02 15:57:38 momjian Exp $ * $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.150 2000/06/09 12:33:42 momjian Exp $
* *
* Modifications - 6/10/96 - dave@bensoft.com - version 1.13.dhb * Modifications - 6/10/96 - dave@bensoft.com - version 1.13.dhb
* *
...@@ -490,11 +490,9 @@ prompt_for_password(char *username, char *password) ...@@ -490,11 +490,9 @@ prompt_for_password(char *username, char *password)
#ifdef HAVE_TERMIOS_H #ifdef HAVE_TERMIOS_H
struct termios t_orig, struct termios t_orig,
t;
#endif #endif
printf("Username: "); fprintf(stderr, "Username: ");
fgets(username, 100, stdin); fgets(username, 100, stdin);
length = strlen(username); length = strlen(username);
/* skip rest of the line */ /* skip rest of the line */
...@@ -508,7 +506,7 @@ prompt_for_password(char *username, char *password) ...@@ -508,7 +506,7 @@ prompt_for_password(char *username, char *password)
if (length > 0 && username[length - 1] == '\n') if (length > 0 && username[length - 1] == '\n')
username[length - 1] = '\0'; username[length - 1] = '\0';
printf("Password: "); fprintf(stderr, "Password: ");
#ifdef HAVE_TERMIOS_H #ifdef HAVE_TERMIOS_H
tcgetattr(0, &t); tcgetattr(0, &t);
t_orig = t; t_orig = t;
...@@ -532,7 +530,7 @@ prompt_for_password(char *username, char *password) ...@@ -532,7 +530,7 @@ prompt_for_password(char *username, char *password)
if (length > 0 && password[length - 1] == '\n') if (length > 0 && password[length - 1] == '\n')
password[length - 1] = '\0'; password[length - 1] = '\0';
printf("\n\n"); fprintf(stderr, "\n\n");
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment