1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-26 12:25:09 +03:00

corrected small error in last commit corrected small typo in last commit

* configure.in: corrected small error in last commit
* xmlreader.c: corrected small typo in last commit

svn path=/trunk/; revision=3591
This commit is contained in:
William M. Brack 2007-03-14 12:40:21 +00:00
parent 06559b3add
commit 0c1e301175
3 changed files with 12 additions and 4 deletions

View File

@ -1,3 +1,8 @@
Wed Mar 14 20:30:38 HKT 2007 William Brack <wbrack@mmm.com.hk>
* configure.in: corrected small error in last commit
* xmlreader.c: corrected small typo in last commit
Wed Mar 14 19:35:28 HKT 2007 William Brack <wbrack@mmm.com.hk>
* xmlschemas.c: fixed problem with referenced attribute groups

View File

@ -506,8 +506,9 @@ fi
if test $enable_ipv6 = yes; then
have_ipv6=no
AC_TRY_COMPILE([
#include <sys/types.h>], [
#include <sys/types.h>
#include <sys/socket.h>
], [
struct sockaddr_storage ss;
socket(AF_INET6, SOCK_STREAM, 0)
],
@ -529,8 +530,9 @@ if test $enable_ipv6 = yes; then
dnl ********************************************************************
AC_MSG_CHECKING([struct sockaddr::ss_family])
AC_TRY_COMPILE([
#include <sys/types.h>], [
#include <sys/types.h>
#include <sys/socket.h>
], [
struct sockaddr_storage ss ;
ss.ss_family = 0 ;
],
@ -541,8 +543,9 @@ if test $enable_ipv6 = yes; then
if test x$have_ss_family = xno ; then
AC_MSG_CHECKING([broken struct sockaddr::ss_family])
AC_TRY_COMPILE([
#include <sys/types.h>], [
#include <sys/types.h>
#include <sys/socket.h>
], [
struct sockaddr_storage ss ;
ss.__ss_family = 0 ;
],

View File

@ -1170,7 +1170,7 @@ xmlTextReaderDoExpand(xmlTextReaderPtr reader) {
return(1);
val = xmlTextReaderPushData(reader);
if (val < 0){
reader->mode == XML_TEXTREADER_MODE_ERROR;
reader->mode = XML_TEXTREADER_MODE_ERROR;
return(-1);
}
} while(reader->mode != XML_TEXTREADER_MODE_EOF);