diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c
index 5ea0f4705ec35a13873f5e54ebca0e7078ebaab7..0d31b4a7dc3389a8e282e94fa73fda52723490a5 100644
--- a/src/backend/postmaster/postmaster.c
+++ b/src/backend/postmaster/postmaster.c
@@ -37,7 +37,7 @@
  *
  *
  * IDENTIFICATION
- *	  $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.324 2003/05/08 18:33:25 tgl Exp $
+ *	  $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.325 2003/05/08 20:43:07 momjian Exp $
  *
  * NOTES
  *
@@ -1572,11 +1572,11 @@ SIGHUP_handler(SIGNAL_ARGS)
 	if (Shutdown <= SmartShutdown)
 	{
 		elog(LOG, "Received SIGHUP, reloading configuration files");
-		SignalChildren(SIGHUP);
 		ProcessConfigFile(PGC_SIGHUP);
 #ifdef EXEC_BACKEND
 		write_nondefault_variables(PGC_SIGHUP);
 #endif
+		SignalChildren(SIGHUP);
 		load_hba();
 		load_ident();
 	}