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
166f67ce
Commit
166f67ce
authored
Nov 15, 2007
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Message improvements
parent
e2776a08
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
src/backend/libpq/auth.c
src/backend/libpq/auth.c
+3
-3
src/backend/postmaster/postmaster.c
src/backend/postmaster/postmaster.c
+2
-2
No files found.
src/backend/libpq/auth.c
View file @
166f67ce
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/libpq/auth.c,v 1.15
7 2007/11/09 17:31:07 mha
Exp $
* $PostgreSQL: pgsql/src/backend/libpq/auth.c,v 1.15
8 2007/11/15 20:04:38 petere
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -585,7 +585,7 @@ pg_GSS_recvauth(Port *port)
{
ereport
(
LOG
,
(
errcode
(
ERRCODE_FEATURE_NOT_SUPPORTED
),
errmsg
(
"GSSAPI not implemented on this server
.
"
)));
errmsg
(
"GSSAPI not implemented on this server"
)));
return
STATUS_ERROR
;
}
#endif
/* ENABLE_GSS */
...
...
@@ -868,7 +868,7 @@ pg_SSPI_recvauth(Port *port)
{
ereport
(
LOG
,
(
errcode
(
ERRCODE_FEATURE_NOT_SUPPORTED
),
errmsg
(
"SSPI not implemented on this server
.
"
)));
errmsg
(
"SSPI not implemented on this server"
)));
return
STATUS_ERROR
;
}
#endif
/* ENABLE_SSPI */
...
...
src/backend/postmaster/postmaster.c
View file @
166f67ce
...
...
@@ -37,7 +37,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.54
5 2007/11/08 14:47:51
petere Exp $
* $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.54
6 2007/11/15 20:04:38
petere Exp $
*
* NOTES
*
...
...
@@ -4524,7 +4524,7 @@ pgwin32_deadchild_callback(PVOID lpParameter, BOOLEAN TimerOrWaitFired)
/*
* Should never happen. Inform user and set a fixed exitcode.
*/
write_stderr
(
"could not read exitcode for process
\n
"
);
write_stderr
(
"could not read exit
code for process
\n
"
);
exitcode
=
255
;
}
...
...
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