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
299ae435
Commit
299ae435
authored
Jan 15, 2005
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adjust warning message about Windows console code page to point to
the right place in the docs, and gettext()ify it.
parent
0b72ebdc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
src/bin/psql/startup.c
src/bin/psql/startup.c
+4
-4
No files found.
src/bin/psql/startup.c
View file @
299ae435
...
...
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2005, PostgreSQL Global Development Group
*
* $PostgreSQL: pgsql/src/bin/psql/startup.c,v 1.11
0 2005/01/14 00:25:17 momjian
Exp $
* $PostgreSQL: pgsql/src/bin/psql/startup.c,v 1.11
1 2005/01/15 05:43:06 tgl
Exp $
*/
#include "postgres_fe.h"
...
...
@@ -670,9 +670,9 @@ checkWin32Codepage(void)
concp
=
GetConsoleCP
();
if
(
wincp
!=
concp
)
{
printf
(
"Warning: Console codepage (%u) differs from windows code
page (%u)
\n
"
" 8-bit characters will not work correctly. See PostgreSQL
\n
"
" documentation
\"
Installation on Windows
\"
for details.
\n\n
"
,
printf
(
gettext
(
"Warning: Console code page (%u) differs from Windows code
page (%u)
\n
"
" 8-bit characters may not work correctly. See psql reference
\n
"
" page
\"
Notes for Windows users
\"
for details.
\n\n
"
)
,
concp
,
wincp
);
}
}
...
...
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