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
702c91b4
Commit
702c91b4
authored
Sep 05, 2003
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
This fixes three minor typos in hba.c.
-- Alvaro Herrera (<alvherre[a]dcc.uchile.cl>)
parent
b0ba70df
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
src/backend/libpq/hba.c
src/backend/libpq/hba.c
+4
-4
No files found.
src/backend/libpq/hba.c
View file @
702c91b4
...
...
@@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/libpq/hba.c,v 1.11
1 2003/08/04 02:39:59
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/libpq/hba.c,v 1.11
2 2003/09/05 03:57:13
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -1292,7 +1292,7 @@ ident_inet(const SockAddr remote_addr,
{
ereport
(
LOG
,
(
errcode_for_socket_access
(),
errmsg
(
"could not connect to IDENT server at address
\"
%s
\"
, port %s
)
: %m"
,
errmsg
(
"could not connect to IDENT server at address
\"
%s
\"
, port %s: %m"
,
remote_addr_s
,
ident_port
)));
ident_return
=
false
;
goto
ident_inet_done
;
...
...
@@ -1312,7 +1312,7 @@ ident_inet(const SockAddr remote_addr,
{
ereport
(
LOG
,
(
errcode_for_socket_access
(),
errmsg
(
"could not send query to IDENT server at address
\"
%s
\"
, port %s
)
: %m"
,
errmsg
(
"could not send query to IDENT server at address
\"
%s
\"
, port %s: %m"
,
remote_addr_s
,
ident_port
)));
ident_return
=
false
;
goto
ident_inet_done
;
...
...
@@ -1327,7 +1327,7 @@ ident_inet(const SockAddr remote_addr,
{
ereport
(
LOG
,
(
errcode_for_socket_access
(),
errmsg
(
"could not receive response from IDENT server at address
\"
%s
\"
, port %s
)
: %m"
,
errmsg
(
"could not receive response from IDENT server at address
\"
%s
\"
, port %s: %m"
,
remote_addr_s
,
ident_port
)));
ident_return
=
false
;
goto
ident_inet_done
;
...
...
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