diff options
author | Marc G. Fournier <scrappy@hub.org> | 1997-12-04 00:28:15 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1997-12-04 00:28:15 +0000 |
commit | 4c04f7724ed4b9aa798810f2cd016b6520a4f2a6 (patch) | |
tree | f04eaeed04ad6f4314091828e03e7acafa548510 /src/interfaces/libpq/fe-auth.c | |
parent | 333323f304af75ee286367a7f84acc74ed16dd82 (diff) | |
download | postgresql-4c04f7724ed4b9aa798810f2cd016b6520a4f2a6.tar.gz postgresql-4c04f7724ed4b9aa798810f2cd016b6520a4f2a6.zip |
From: todd brandys <brandys@eng3.hep.uiuc.edu>
An extension to the code to allow for a pg_password authentication database
that is *seperate* from the system password file
Diffstat (limited to 'src/interfaces/libpq/fe-auth.c')
-rw-r--r-- | src/interfaces/libpq/fe-auth.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/interfaces/libpq/fe-auth.c b/src/interfaces/libpq/fe-auth.c index 3bcd919dc0c..8f96230f02d 100644 --- a/src/interfaces/libpq/fe-auth.c +++ b/src/interfaces/libpq/fe-auth.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-auth.c,v 1.11 1997/09/08 21:55:32 momjian Exp $ + * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-auth.c,v 1.12 1997/12/04 00:28:08 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -511,6 +511,7 @@ fe_sendauth(MsgType msgtype, Port *port, const char *hostname, case STARTUP_MSG: break; case STARTUP_PASSWORD_MSG: + case STARTUP_CRYPT_MSG: pg_password_sendauth(port, user, password); default: break; |