pgsql: Reorganize functions in be-secure-openssl.c - Mailing list pgsql-committers

From Heikki Linnakangas
Subject pgsql: Reorganize functions in be-secure-openssl.c
Date
Msg-id E1XJJzz-0003sN-PL@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Reorganize functions in be-secure-openssl.c

Move the functions within the file so that public interface functions come
first, followed by internal functions. Previously, be_tls_write was first,
then internal stuff, and finally the rest of the public interface, which
clearly didn't make much sense.

Per Andres Freund's complaint.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/48d50840d53eb62842c0d9b54eab9cd7c9a3a46d

Modified Files
--------------
src/backend/libpq/be-secure-openssl.c | 1457 +++++++++++++++++----------------
1 file changed, 734 insertions(+), 723 deletions(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Fix obsolete mention of non-int64 support in CREATE SEQUENCE doc
Next
From: Heikki Linnakangas
Date:
Subject: Re: pgsql: Break out OpenSSL-specific code to separate files.