Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
38316366
Commit
38316366
authored
21 years ago
by
Tom Lane
Browse files
Options
Downloads
Patches
Plain Diff
const-ify info_cb() to match recent openssl releases. Per Joe Conway.
parent
f779a34c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/backend/libpq/be-secure.c
+3
-3
3 additions, 3 deletions
src/backend/libpq/be-secure.c
with
3 additions
and
3 deletions
src/backend/libpq/be-secure.c
+
3
−
3
View file @
38316366
...
@@ -11,7 +11,7 @@
...
@@ -11,7 +11,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/libpq/be-secure.c,v 1.3
0
2003/04/
19 00:02
:2
9
tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/libpq/be-secure.c,v 1.3
1
2003/04/
25 04:37
:2
3
tgl Exp $
*
*
* Since the server static private key ($DataDir/server.key)
* Since the server static private key ($DataDir/server.key)
* will normally be stored unencrypted so that the database
* will normally be stored unencrypted so that the database
...
@@ -115,7 +115,7 @@ static DH *load_dh_file(int keylength);
...
@@ -115,7 +115,7 @@ static DH *load_dh_file(int keylength);
static
DH
*
load_dh_buffer
(
const
char
*
,
size_t
);
static
DH
*
load_dh_buffer
(
const
char
*
,
size_t
);
static
DH
*
tmp_dh_cb
(
SSL
*
s
,
int
is_export
,
int
keylength
);
static
DH
*
tmp_dh_cb
(
SSL
*
s
,
int
is_export
,
int
keylength
);
static
int
verify_cb
(
int
,
X509_STORE_CTX
*
);
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
int
initialize_SSL
(
void
);
static
void
destroy_SSL
(
void
);
static
void
destroy_SSL
(
void
);
static
int
open_server_SSL
(
Port
*
);
static
int
open_server_SSL
(
Port
*
);
...
@@ -547,7 +547,7 @@ verify_cb(int ok, X509_STORE_CTX *ctx)
...
@@ -547,7 +547,7 @@ verify_cb(int ok, X509_STORE_CTX *ctx)
* into the PostgreSQL log.
* into the PostgreSQL log.
*/
*/
static
void
static
void
info_cb
(
SSL
*
ssl
,
int
type
,
int
args
)
info_cb
(
const
SSL
*
ssl
,
int
type
,
int
args
)
{
{
switch
(
type
)
switch
(
type
)
{
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment