The definition for "ProcessConfigFile()" in guc-file.l does not match

the prototype in guc.h.  The following patch corrects that.

Billy G. Allie
This commit is contained in:
Bruce Momjian 2000-06-01 16:46:50 +00:00
parent 64b4a48ddc
commit bb8bda3918

View File

@ -4,7 +4,7 @@
* *
* Copyright 2000 by PostgreSQL Global Development Group * Copyright 2000 by PostgreSQL Global Development Group
* *
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc-file.l,v 1.1 2000/05/31 00:28:34 petere Exp $ * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc-file.l,v 1.2 2000/06/01 16:46:50 momjian Exp $
*/ */
%{ %{
@ -124,7 +124,7 @@ free_name_value_list(struct name_value_pair * list)
* values will be changed. * values will be changed.
*/ */
void void
ProcessConfigFile(unsigned int context) ProcessConfigFile(GucContext context)
{ {
int token, parse_state; int token, parse_state;
char *opt_name, *opt_value; char *opt_name, *opt_value;