55 * command, configuration file, and command line options.
66 * See src/backend/utils/misc/README for more information.
77 *
8- * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.77 2002/07/31 17:19:52 tgl Exp $
8+ * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.78 2002/08/07 17:26:24 tgl Exp $
99 *
1010 * Copyright 2000 by PostgreSQL Global Development Group
1111 * Written by Peter Eisentraut <peter_e@gmx.net>.
@@ -1015,8 +1015,8 @@ InitializeGUCOptions(void)
10151015
10161016if (conf -> assign_hook )
10171017if (!(* conf -> assign_hook ) (conf -> reset_val , true, false))
1018- fprintf (stderr ,"Failed to initialize %s" ,
1019- conf -> gen .name );
1018+ fprintf (stderr ,"Failed to initialize %s to %d\n " ,
1019+ conf -> gen .name , ( int ) conf -> reset_val );
10201020* conf -> variable = conf -> reset_val ;
10211021conf -> session_val = conf -> reset_val ;
10221022break ;
@@ -1029,8 +1029,8 @@ InitializeGUCOptions(void)
10291029Assert (conf -> reset_val <=conf -> max );
10301030if (conf -> assign_hook )
10311031if (!(* conf -> assign_hook ) (conf -> reset_val , true, false))
1032- fprintf (stderr ,"Failed to initialize %s" ,
1033- conf -> gen .name );
1032+ fprintf (stderr ,"Failed to initialize %s to %d\n " ,
1033+ conf -> gen .name , conf -> reset_val );
10341034* conf -> variable = conf -> reset_val ;
10351035conf -> session_val = conf -> reset_val ;
10361036break ;
@@ -1043,8 +1043,8 @@ InitializeGUCOptions(void)
10431043Assert (conf -> reset_val <=conf -> max );
10441044if (conf -> assign_hook )
10451045if (!(* conf -> assign_hook ) (conf -> reset_val , true, false))
1046- fprintf (stderr ,"Failed to initialize %s" ,
1047- conf -> gen .name );
1046+ fprintf (stderr ,"Failed to initialize %s to %g\n " ,
1047+ conf -> gen .name , conf -> reset_val );
10481048* conf -> variable = conf -> reset_val ;
10491049conf -> session_val = conf -> reset_val ;
10501050break ;
@@ -1077,8 +1077,8 @@ InitializeGUCOptions(void)
10771077newstr = (* conf -> assign_hook ) (str , true, false);
10781078if (newstr == NULL )
10791079{
1080- fprintf (stderr ,"Failed to initialize %s" ,
1081- conf -> gen .name );
1080+ fprintf (stderr ,"Failed to initialize %s to '%s'\n " ,
1081+ conf -> gen .name , str );
10821082}
10831083else if (newstr != str )
10841084{