|
42 | 42 | * Portions Copyright (c) 1994, Regents of the University of California
|
43 | 43 | * Portions taken from FreeBSD.
|
44 | 44 | *
|
45 |
| - * $PostgreSQL: pgsql/src/bin/initdb/initdb.c,v 1.183 2010/01/2606:58:39 petere Exp $ |
| 45 | + * $PostgreSQL: pgsql/src/bin/initdb/initdb.c,v 1.184 2010/01/2616:18:12 tgl Exp $ |
46 | 46 | *
|
47 | 47 | *-------------------------------------------------------------------------
|
48 | 48 | */
|
@@ -1215,14 +1215,14 @@ setup_config(void)
|
1215 | 1215 | if (err!=0||
|
1216 | 1216 | getaddrinfo("::1",NULL,&hints,&gai_result)!=0)
|
1217 | 1217 | conflines=replace_token(conflines,
|
1218 |
| -"host all all ::1", |
1219 |
| -"#host all all ::1"); |
| 1218 | +"host allall ::1", |
| 1219 | +"#host allall ::1"); |
1220 | 1220 | }
|
1221 | 1221 | #else/* !HAVE_IPV6 */
|
1222 | 1222 | /* If we didn't compile IPV6 support at all, always comment it out */
|
1223 | 1223 | conflines=replace_token(conflines,
|
1224 |
| -"host all all ::1", |
1225 |
| -"#host all all ::1"); |
| 1224 | +"host allall ::1", |
| 1225 | +"#host allall ::1"); |
1226 | 1226 | #endif/* HAVE_IPV6 */
|
1227 | 1227 |
|
1228 | 1228 | /* Replace default authentication methods */
|
|