From d672ea6ffa16b1ab302c6d8ba5d4c797f398625b Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Fri, 4 Apr 2008 08:33:15 +0000 Subject: Turn xmlbinary and xmloption GUC variables into enumsTurn xmlbinary and xmloption GUC variables into enums.. --- src/backend/utils/adt/xml.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/backend/utils/adt/xml.c') diff --git a/src/backend/utils/adt/xml.c b/src/backend/utils/adt/xml.c index c4960bcecfb..ce1e4a4fdde 100644 --- a/src/backend/utils/adt/xml.c +++ b/src/backend/utils/adt/xml.c @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/backend/utils/adt/xml.c,v 1.71 2008/03/25 22:42:44 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/utils/adt/xml.c,v 1.72 2008/04/04 08:33:15 mha Exp $ * *------------------------------------------------------------------------- */ @@ -86,8 +86,8 @@ /* GUC variables */ -XmlBinaryType xmlbinary; -XmlOptionType xmloption; +int xmlbinary; +int xmloption; #ifdef USE_LIBXML -- cgit v1.2.3