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
55c0da38
Commit
55c0da38
authored
May 18, 2015
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Message string improvements
parent
0779f2ba
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
6 deletions
+8
-6
src/bin/pg_basebackup/pg_receivexlog.c
src/bin/pg_basebackup/pg_receivexlog.c
+6
-4
src/bin/pg_basebackup/pg_recvlogical.c
src/bin/pg_basebackup/pg_recvlogical.c
+1
-1
src/interfaces/libpq/fe-secure-openssl.c
src/interfaces/libpq/fe-secure-openssl.c
+1
-1
No files found.
src/bin/pg_basebackup/pg_receivexlog.c
View file @
55c0da38
...
...
@@ -479,17 +479,19 @@ main(int argc, char **argv)
exit
(
1
);
}
if
(
replication_slot
==
NULL
&&
(
do_drop_slot
||
do_create_slot
)
)
if
(
do_drop_slot
&&
do_create_slot
)
{
fprintf
(
stderr
,
_
(
"%s:
--create-slot and --drop-slot need a slot to be specified using -
-slot
\n
"
),
progname
);
fprintf
(
stderr
,
_
(
"%s:
cannot use --create-slot together with --drop
-slot
\n
"
),
progname
);
fprintf
(
stderr
,
_
(
"Try
\"
%s --help
\"
for more information.
\n
"
),
progname
);
exit
(
1
);
}
if
(
do_drop_slot
&&
do_create_slot
)
if
(
replication_slot
==
NULL
&&
(
do_drop_slot
||
do_create_slot
)
)
{
fprintf
(
stderr
,
_
(
"%s: cannot use --create-slot together with --drop-slot
\n
"
),
progname
);
/* translator: second %s is an option name */
fprintf
(
stderr
,
_
(
"%s: %s needs a slot to be specified using --slot
\n
"
),
progname
,
do_drop_slot
?
"--drop-slot"
:
"--create-slot"
);
fprintf
(
stderr
,
_
(
"Try
\"
%s --help
\"
for more information.
\n
"
),
progname
);
exit
(
1
);
...
...
src/bin/pg_basebackup/pg_recvlogical.c
View file @
55c0da38
...
...
@@ -852,7 +852,7 @@ main(int argc, char **argv)
if
(
db_name
==
NULL
)
{
fprintf
(
stderr
,
_
(
"%s:
failed to establish database
specific replication connection
\n
"
),
_
(
"%s:
could not establish database-
specific replication connection
\n
"
),
progname
);
disconnect_and_exit
(
1
);
}
...
...
src/interfaces/libpq/fe-secure-openssl.c
View file @
55c0da38
...
...
@@ -694,7 +694,7 @@ verify_peer_name_matches_certificate(PGconn *conn)
else
{
printfPQExpBuffer
(
&
conn
->
errorMessage
,
libpq_gettext
(
"could not get server's hostname from server certificate
\n
"
));
libpq_gettext
(
"could not get server's host
name from server certificate
\n
"
));
}
}
...
...
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