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
c93872d8
Commit
c93872d8
authored
20 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Remove pg_hba.conf 'local' line for Win32 because it doesn't support unix domain
connections. Andrew Dunstan
parent
513e89b4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/backend/libpq/pg_hba.conf.sample
+4
-3
4 additions, 3 deletions
src/backend/libpq/pg_hba.conf.sample
src/bin/initdb/initdb.c
+38
-1
38 additions, 1 deletion
src/bin/initdb/initdb.c
with
42 additions
and
4 deletions
src/backend/libpq/pg_hba.conf.sample
+
4
−
3
View file @
c93872d8
...
...
@@ -60,8 +60,9 @@
# TYPE DATABASE USER CIDR-ADDRESS METHOD
local all all @authmethod@
# IPv4-style local connections:
@remove-line-for-win32@# "local" is for Unix domain socket connections only
@remove-line-for-win32@local all all @authmethod@
# IPv4 local connections:
host all all 127.0.0.1/32 @authmethod@
# IPv6
-style
local connections:
# IPv6 local connections:
host all all ::1/128 @authmethod@
This diff is collapsed.
Click to expand it.
src/bin/initdb/initdb.c
+
38
−
1
View file @
c93872d8
...
...
@@ -39,7 +39,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
* Portions taken from FreeBSD.
*
* $PostgreSQL: pgsql/src/bin/initdb/initdb.c,v 1.5
4
2004/
09/02 17:58:41 tgl
Exp $
* $PostgreSQL: pgsql/src/bin/initdb/initdb.c,v 1.5
5
2004/
10/06 09:01:18 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -147,6 +147,9 @@ char backend_exec[MAXPGPATH];
static
void
*
xmalloc
(
size_t
size
);
static
char
*
xstrdup
(
const
char
*
s
);
static
char
**
replace_token
(
char
**
lines
,
char
*
token
,
char
*
replacement
);
#ifdef WIN32
static
char
**
filter_lines_with_token
(
char
**
lines
,
char
*
token
);
#endif
static
char
**
readfile
(
char
*
path
);
static
void
writefile
(
char
*
path
,
char
**
lines
);
static
int
mkdir_p
(
char
*
path
,
mode_t
omode
);
...
...
@@ -310,6 +313,34 @@ replace_token(char **lines, char *token, char *replacement)
}
/*
* make a copy of lines without any that contain the token
* a sort of poor man's grep -v
*
*/
#ifdef WIN32
static
char
**
filter_lines_with_token
(
char
**
lines
,
char
*
token
)
{
int
numlines
=
1
;
int
i
,
src
,
dst
;
char
**
result
;
for
(
i
=
0
;
lines
[
i
];
i
++
)
numlines
++
;
result
=
(
char
**
)
xmalloc
(
numlines
*
sizeof
(
char
*
));
for
(
src
=
0
,
dst
=
0
;
src
<
numlines
;
src
++
)
{
if
(
lines
[
src
]
==
NULL
||
strstr
(
lines
[
src
],
token
)
==
NULL
)
result
[
dst
++
]
=
lines
[
src
];
}
return
result
;
}
#endif
/*
* get the lines from a text file
*/
...
...
@@ -1093,6 +1124,12 @@ setup_config(void)
conflines
=
readfile
(
hba_file
);
#ifdef WIN32
conflines
=
filter_lines_with_token
(
conflines
,
"@remove-line-for-win32@"
);
#else
conflines
=
replace_token
(
conflines
,
"@remove-line-for-win32@"
,
""
);
#endif
#ifndef HAVE_IPV6
conflines
=
replace_token
(
conflines
,
"host all all ::1"
,
...
...
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