]> granicus.if.org Git - libexpat/commitdiff
Use the new XML_*_VERSION constants to fill in the XML_Expat_Version
authorFred L. Drake, Jr. <fdrake@users.sourceforge.net>
Wed, 24 Jan 2001 19:38:54 +0000 (19:38 +0000)
committerFred L. Drake, Jr. <fdrake@users.sourceforge.net>
Wed, 24 Jan 2001 19:38:54 +0000 (19:38 +0000)
structure.

expat/lib/xmlparse.c

index ca51125758193db69cbcc6f5094c153efc9c97eb..ec9605a3e7032e60e0ce01de46db0379ddf9f711 100644 (file)
@@ -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;
 }