From a3fcd14422a1f9c47b11bc3f7e607afac1329c02 Mon Sep 17 00:00:00 2001 From: "Fred L. Drake, Jr." Date: Wed, 24 Jan 2001 19:38:54 +0000 Subject: [PATCH] Use the new XML_*_VERSION constants to fill in the XML_Expat_Version structure. --- expat/lib/xmlparse.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/expat/lib/xmlparse.c b/expat/lib/xmlparse.c index ca511257..ec9605a3 100644 --- a/expat/lib/xmlparse.c +++ b/expat/lib/xmlparse.c @@ -4,7 +4,7 @@ See the file COPYING for copying permission. */ static char RCSId[] - = "$Header: /cvsroot/expat/expat/lib/xmlparse.c,v 1.12 2000/12/21 00:32:47 fdrake Exp $"; + = "$Header: /cvsroot/expat/expat/lib/xmlparse.c,v 1.13 2000/12/27 19:37:37 coopercc Exp $"; #ifdef COMPILED_FROM_DSP # include "winconfig.h" @@ -1332,9 +1332,9 @@ XML_Expat_Version XML_ExpatVersionInfo(void) { XML_Expat_Version version; - version.major = EXPAT_VMAJOR; - version.minor = EXPAT_VMINOR; - version.micro = EXPAT_VMICRO; + version.major = XML_MAJOR_VERSION; + version.minor = XML_MINOR_VERSION; + version.micro = XML_MICRO_VERSION; return version; } -- 2.40.0