Return-Path: Mailing-List: contact security-cvs-help@xml.apache.org; run by ezmlm Delivered-To: mailing list security-cvs@xml.apache.org Received: (qmail 49656 invoked from network); 27 Jun 2003 12:14:26 -0000 Received: from icarus.apache.org (208.185.179.13) by daedalus.apache.org with SMTP; 27 Jun 2003 12:14:26 -0000 Received: (qmail 98404 invoked by uid 1627); 27 Jun 2003 12:14:25 -0000 Date: 27 Jun 2003 12:14:25 -0000 Message-ID: <20030627121425.98400.qmail@icarus.apache.org> From: blautenb@apache.org To: xml-security-cvs@apache.org Subject: cvs commit: xml-security/c/src/utils XSECDOMUtils.cpp X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N blautenb 2003/06/27 05:14:25 Modified: c/src/dsig DSIGKeyInfoSPKIData.cpp DSIGKeyInfoSPKIData.hpp c/src/tools/checksig InteropResolver.hpp c/src/utils XSECDOMUtils.cpp Log: Clean build on cygwin Revision Changes Path 1.2 +3 -3 xml-security/c/src/dsig/DSIGKeyInfoSPKIData.cpp Index: DSIGKeyInfoSPKIData.cpp =================================================================== RCS file: /home/cvs/xml-security/c/src/dsig/DSIGKeyInfoSPKIData.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- DSIGKeyInfoSPKIData.cpp 27 May 2003 12:06:07 -0000 1.1 +++ DSIGKeyInfoSPKIData.cpp 27 Jun 2003 12:14:24 -0000 1.2 @@ -168,13 +168,13 @@ } -int DSIGKeyInfoSPKIData::getSexpSize(void) { +unsigned int DSIGKeyInfoSPKIData::getSexpSize(void) { return m_sexpList.size(); } -const XMLCh * DSIGKeyInfoSPKIData::getSexp(int index) { +const XMLCh * DSIGKeyInfoSPKIData::getSexp(unsigned int index) { if (index < 0 || index >= m_sexpList.size()) { 1.2 +3 -3 xml-security/c/src/dsig/DSIGKeyInfoSPKIData.hpp Index: DSIGKeyInfoSPKIData.hpp =================================================================== RCS file: /home/cvs/xml-security/c/src/dsig/DSIGKeyInfoSPKIData.hpp,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- DSIGKeyInfoSPKIData.hpp 27 May 2003 12:06:07 -0000 1.1 +++ DSIGKeyInfoSPKIData.hpp 27 Jun 2003 12:14:24 -0000 1.2 @@ -149,7 +149,7 @@ * @returns The number of S-expressions */ - int getSexpSize(void); + unsigned int getSexpSize(void); /** * \brief returns the indicated SExpression @@ -161,7 +161,7 @@ * S-expression */ - virtual const XMLCh * getSexp(int index); + virtual const XMLCh * getSexp(unsigned int index); /** * \Get key name - unimplemented for SPKI packets 1.4 +2 -2 xml-security/c/src/tools/checksig/InteropResolver.hpp Index: InteropResolver.hpp =================================================================== RCS file: /home/cvs/xml-security/c/src/tools/checksig/InteropResolver.hpp,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- InteropResolver.hpp 23 Jun 2003 10:00:54 -0000 1.3 +++ InteropResolver.hpp 27 Jun 2003 12:14:24 -0000 1.4 @@ -111,7 +111,7 @@ long m_handle; #else glob_t m_globbuf; - unsigned int m_fcount; + int m_fcount; #endif }; 1.9 +1 -1 xml-security/c/src/utils/XSECDOMUtils.cpp Index: XSECDOMUtils.cpp =================================================================== RCS file: /home/cvs/xml-security/c/src/utils/XSECDOMUtils.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- XSECDOMUtils.cpp 7 Jun 2003 10:33:29 -0000 1.8 +++ XSECDOMUtils.cpp 27 Jun 2003 12:14:24 -0000 1.9 @@ -349,7 +349,7 @@ } // Now encode trailing white space - while (*i != NULL) { + while (*i != chNull) { if (*i == ' ') result.sbXMLChCat(s_strEncodedSpace);