1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-02 09:02:37 +03:00

Rename pg_make_encrypted_password to PQencryptPassword.

This commit is contained in:
Peter Eisentraut
2005-12-26 14:58:06 +00:00
parent 5c9a46f605
commit 6840cccd11
6 changed files with 17 additions and 17 deletions

View File

@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2005, PostgreSQL Global Development Group
*
* $PostgreSQL: pgsql/src/bin/psql/command.c,v 1.157 2005/12/23 01:16:38 tgl Exp $
* $PostgreSQL: pgsql/src/bin/psql/command.c,v 1.158 2005/12/26 14:58:04 petere Exp $
*/
#include "postgres_fe.h"
#include "command.h"
@ -643,7 +643,7 @@ exec_command(const char *cmd,
else
user = PQuser(pset.db);
encrypted_password = pg_make_encrypted_password(pw1, user);
encrypted_password = PQencryptPassword(pw1, user);
if (!encrypted_password)
{