1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-29 10:41:53 +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

@ -10,7 +10,7 @@
* exceed INITIAL_EXPBUFFER_SIZE (currently 256 bytes).
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-auth.c,v 1.109 2005/12/23 01:16:38 tgl Exp $
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-auth.c,v 1.110 2005/12/26 14:58:05 petere Exp $
*
*-------------------------------------------------------------------------
*/
@ -534,7 +534,7 @@ pg_fe_getauthname(char *PQerrormsg)
/*
* pg_make_encrypted_password -- exported routine to encrypt a password
* PQencryptPassword -- exported routine to encrypt a password
*
* This is intended to be used by client applications that wish to send
* commands like ALTER USER joe PASSWORD 'pwd'. The password need not
@ -548,11 +548,11 @@ pg_fe_getauthname(char *PQerrormsg)
* is for.
*
* Return value is a malloc'd string, or NULL if out-of-memory. The client
* may assume the string doesn't contain any weird characters that would
* may assume the string doesn't contain any special characters that would
* require escaping.
*/
char *
pg_make_encrypted_password(const char *passwd, const char *user)
PQencryptPassword(const char *passwd, const char *user)
{
char *crypt_pwd;