Index: src/backend/postmaster/postmaster.c =================================================================== RCS file: /cvsroot/pgsql-server/src/backend/postmaster/postmaster.c,v retrieving revision 1.323 diff -c -c -r1.323 postmaster.c *** src/backend/postmaster/postmaster.c 8 May 2003 14:49:03 -0000 1.323 --- src/backend/postmaster/postmaster.c 8 May 2003 20:30:34 -0000 *************** *** 1582,1592 **** if (Shutdown <= SmartShutdown) { elog(LOG, "Received SIGHUP, reloading configuration files"); - SignalChildren(SIGHUP); ProcessConfigFile(PGC_SIGHUP); #ifdef EXEC_BACKEND write_nondefault_variables(PGC_SIGHUP); #endif load_hba(); load_ident(); } --- 1582,1592 ---- if (Shutdown <= SmartShutdown) { elog(LOG, "Received SIGHUP, reloading configuration files"); ProcessConfigFile(PGC_SIGHUP); #ifdef EXEC_BACKEND write_nondefault_variables(PGC_SIGHUP); #endif + SignalChildren(SIGHUP); load_hba(); load_ident(); }