*** postgresql-8.0.0cvs/src/bin/initdb/initdb.c.orig Thu Sep 2 19:58:41 2004 --- postgresql-8.0.0cvs/src/bin/initdb/initdb.c Sat Oct 9 14:40:13 2004 *************** *** 981,987 **** --- 981,991 ---- test_connections(void) { char cmd[MAXPGPATH]; + #ifdef __CYGWIN__ + static const int conns[] = {60, 50, 40, 30, 20, 10, 5}; + #else static const int conns[] = {100, 50, 40, 30, 20, 10}; + #endif static const int len = sizeof(conns) / sizeof(int); int i, status;