pgsql: Move username lookup functions from /port to /common - Mailing list pgsql-committers

From Bruce Momjian
Subject pgsql: Move username lookup functions from /port to /common
Date
Msg-id E1W1l71-0002Op-0o@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Move username lookup functions from /port to /common

Per suggestion from Peter E and Alvaro

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/111022eac64579cc12d20e33146ce01717562b29

Modified Files
--------------
src/backend/libpq/auth.c      |    1 +
src/backend/main/main.c       |    1 +
src/bin/initdb/initdb.c       |    1 +
src/bin/psql/help.c           |    1 +
src/bin/scripts/common.h      |    1 +
src/common/Makefile           |    2 +-
src/common/username.c         |   85 +++++++++++++++++++++++++++++++++++++++++
src/include/common/username.h |   15 ++++++++
src/include/port.h            |    4 --
src/port/Makefile             |    2 +-
src/port/username.c           |   84 ----------------------------------------
src/tools/msvc/Mkvcbuild.pm   |    4 +-
12 files changed, 109 insertions(+), 92 deletions(-)


pgsql-committers by date:

Previous
From: Alvaro Herrera
Date:
Subject: pgsql: Accept pg_upgraded tuples during multixact freezing
Next
From: Bruce Momjian
Date:
Subject: pgsql: Adjust pg_upgrade for move of username lookup functions to /comm