From: | "Billy G(dot) Allie" <Bill(dot)Allie(at)mug(dot)org> |
---|---|
To: | pgsql-patches(at)postgresql(dot)org |
Cc: | pgsql-hackers(at)postgresql(dot)org |
Subject: | Problem compiling guc-file.l in current CVS sources. |
Date: | 2000-06-01 16:01:28 |
Message-ID: | 200006011601.MAA18337@bajor.mug.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers pgsql-patches |
The definition for "ProcessConfigFile()" in guc-file.l does not match the
prototype in guc.h. The following patch corrects that.
--------------------------8< CUT HERE >8--------------------------------
*** src/backend/utils/misc/guc-file.l.orig Wed May 31 16:46:43 2000
--- src/backend/utils/misc/guc-file.l Wed May 31 16:47:08 2000
***************
*** 124,130 ****
* values will be changed.
*/
void
! ProcessConfigFile(unsigned int context)
{
int token, parse_state;
char *opt_name, *opt_value;
--- 124,130 ----
* values will be changed.
*/
void
! ProcessConfigFile(GucContext context)
{
int token, parse_state;
char *opt_name, *opt_value;
--------------------------8< CUT HERE >8--------------------------------
From | Date | Subject | |
---|---|---|---|
Next Message | Adriaan Joubert | 2000-06-01 16:04:09 | CORBA / libpq |
Previous Message | Tom Lane | 2000-06-01 15:06:54 | Re: Quick trial bundle ... |
From | Date | Subject | |
---|---|---|---|
Next Message | Bruce Momjian | 2000-06-01 16:46:37 | Re: Problem compiling guc-file.l in current CVS sources. |
Previous Message | D'Arcy J.M. Cain | 2000-05-31 02:23:27 | Announce: Release of PyGreSQL version 3.0 |