Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
38316366
Commit
38316366
authored
Apr 25, 2003
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
const-ify info_cb() to match recent openssl releases. Per Joe Conway.
parent
f779a34c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/backend/libpq/be-secure.c
src/backend/libpq/be-secure.c
+3
-3
No files found.
src/backend/libpq/be-secure.c
View file @
38316366
...
...
@@ -11,7 +11,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/libpq/be-secure.c,v 1.3
0 2003/04/19 00:02:29
tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/libpq/be-secure.c,v 1.3
1 2003/04/25 04:37:23
tgl Exp $
*
* Since the server static private key ($DataDir/server.key)
* will normally be stored unencrypted so that the database
...
...
@@ -115,7 +115,7 @@ static DH *load_dh_file(int keylength);
static
DH
*
load_dh_buffer
(
const
char
*
,
size_t
);
static
DH
*
tmp_dh_cb
(
SSL
*
s
,
int
is_export
,
int
keylength
);
static
int
verify_cb
(
int
,
X509_STORE_CTX
*
);
static
void
info_cb
(
SSL
*
ssl
,
int
type
,
int
args
);
static
void
info_cb
(
const
SSL
*
ssl
,
int
type
,
int
args
);
static
int
initialize_SSL
(
void
);
static
void
destroy_SSL
(
void
);
static
int
open_server_SSL
(
Port
*
);
...
...
@@ -547,7 +547,7 @@ verify_cb(int ok, X509_STORE_CTX *ctx)
* into the PostgreSQL log.
*/
static
void
info_cb
(
SSL
*
ssl
,
int
type
,
int
args
)
info_cb
(
const
SSL
*
ssl
,
int
type
,
int
args
)
{
switch
(
type
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment