*** pgsql/src/bin/initdb/initdb.c 2008/06/02 03:48:00 1.156 --- pgsql/src/bin/initdb/initdb.c 2008/06/26 01:35:45 1.157 *************** *** 42,48 **** * Portions Copyright (c) 1994, Regents of the University of California * Portions taken from FreeBSD. * ! * $PostgreSQL: pgsql/src/bin/initdb/initdb.c,v 1.155 2008/02/29 23:31:20 adunstan Exp $ * *------------------------------------------------------------------------- */ --- 42,48 ---- * Portions Copyright (c) 1994, Regents of the University of California * Portions taken from FreeBSD. * ! * $PostgreSQL: pgsql/src/bin/initdb/initdb.c,v 1.156 2008/06/02 03:48:00 tgl Exp $ * *------------------------------------------------------------------------- */ *************** test_config_settings(void) *** 1078,1091 **** test_max_fsm = FSM_FOR_BUFS(test_buffs); snprintf(cmd, sizeof(cmd), ! "%s\"%s\" --boot -x0 %s " "-c max_connections=%d " "-c shared_buffers=%d " "-c max_fsm_pages=%d " ! "< \"%s\" > \"%s\" 2>&1%s", ! SYSTEMQUOTE, backend_exec, boot_options, test_conns, test_buffs, test_max_fsm, ! DEVNULL, DEVNULL, SYSTEMQUOTE); status = system(cmd); if (status == 0) { --- 1078,1091 ---- test_max_fsm = FSM_FOR_BUFS(test_buffs); snprintf(cmd, sizeof(cmd), ! SYSTEMQUOTE "\"%s\" --boot -x0 %s " "-c max_connections=%d " "-c shared_buffers=%d " "-c max_fsm_pages=%d " ! "< \"%s\" > \"%s\" 2>&1" SYSTEMQUOTE, ! backend_exec, boot_options, test_conns, test_buffs, test_max_fsm, ! DEVNULL, DEVNULL); status = system(cmd); if (status == 0) { *************** test_config_settings(void) *** 1114,1127 **** test_max_fsm = FSM_FOR_BUFS(test_buffs); snprintf(cmd, sizeof(cmd), ! "%s\"%s\" --boot -x0 %s " "-c max_connections=%d " "-c shared_buffers=%d " "-c max_fsm_pages=%d " ! "< \"%s\" > \"%s\" 2>&1%s", ! SYSTEMQUOTE, backend_exec, boot_options, n_connections, test_buffs, test_max_fsm, ! DEVNULL, DEVNULL, SYSTEMQUOTE); status = system(cmd); if (status == 0) break; --- 1114,1127 ---- test_max_fsm = FSM_FOR_BUFS(test_buffs); snprintf(cmd, sizeof(cmd), ! SYSTEMQUOTE "\"%s\" --boot -x0 %s " "-c max_connections=%d " "-c shared_buffers=%d " "-c max_fsm_pages=%d " ! "< \"%s\" > \"%s\" 2>&1" SYSTEMQUOTE, ! backend_exec, boot_options, n_connections, test_buffs, test_max_fsm, ! DEVNULL, DEVNULL); status = system(cmd); if (status == 0) break;