From: Fred L. Drake, Jr. Date: Wed, 24 Jan 2001 19:38:54 +0000 (+0000) Subject: Use the new XML_*_VERSION constants to fill in the XML_Expat_Version X-Git-Tag: R_1_95_2~94 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a3fcd14422a1f9c47b11bc3f7e607afac1329c02;p=libexpat Use the new XML_*_VERSION constants to fill in the XML_Expat_Version structure. --- 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; }