Commit bb8bda39 authored by Bruce Momjian's avatar Bruce Momjian

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

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

Billy G. Allie
parent 64b4a48d
...@@ -4,7 +4,7 @@ ...@@ -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) ...@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment