summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorAleksey Sanin <aleksey@src.gnome.org>2003-04-20 21:56:02 +0000
committerAleksey Sanin <aleksey@src.gnome.org>2003-04-20 21:56:02 +0000
commit9767b2f7a49c736d23c69beaa5000cd1082e72dd (patch)
tree7871470a05037d0eade3a821cec15182a791fd83 /apps
parentcd689fdfcb9b0115987d480efa5568d2b4bae95e (diff)
downloadxmlsec1-9767b2f7a49c736d23c69beaa5000cd1082e72dd.tar.gz
xmlsec1-9767b2f7a49c736d23c69beaa5000cd1082e72dd.tar.bz2
xmlsec1-9767b2f7a49c736d23c69beaa5000cd1082e72dd.zip
replaced size_t with xmlSecSize typedefed to 'unsigned int' to make happy
* src/* include/* apps/*: replaced size_t with xmlSecSize typedefed to 'unsigned int' to make happy OpenBSD on sparc64
Diffstat (limited to 'apps')
-rw-r--r--apps/cmdline.c6
-rw-r--r--apps/xmlsec.c2
2 files changed, 4 insertions, 4 deletions
diff --git a/apps/cmdline.c b/apps/cmdline.c
index ec898776..6ae26084 100644
--- a/apps/cmdline.c
+++ b/apps/cmdline.c
@@ -104,7 +104,7 @@ xmlSecAppCmdLineParamsListParse(xmlSecAppCmdLineParamPtr* params,
void
xmlSecAppCmdLineParamsListClean(xmlSecAppCmdLineParamPtr* params) {
xmlSecAppCmdLineValuePtr tmp;
- size_t i;
+ xmlSecSize i;
assert(params != NULL);
@@ -121,7 +121,7 @@ void
xmlSecAppCmdLineParamsListPrint(xmlSecAppCmdLineParamPtr* params,
xmlSecAppCmdLineParamTopic topics,
FILE* output) {
- size_t i;
+ xmlSecSize i;
assert(params != NULL);
assert(output != NULL);
@@ -183,7 +183,7 @@ xmlSecAppCmdLineMatchParam(const char* argvParam, const char* paramName,
static xmlSecAppCmdLineParamPtr
xmlSecAppCmdLineParamsListFind(xmlSecAppCmdLineParamPtr* params, xmlSecAppCmdLineParamTopic topics,
const char* name) {
- size_t i;
+ xmlSecSize i;
int canHaveNameString;
assert(params != NULL);
diff --git a/apps/xmlsec.c b/apps/xmlsec.c
index 1a905a0f..ead6d339 100644
--- a/apps/xmlsec.c
+++ b/apps/xmlsec.c
@@ -1018,7 +1018,7 @@ done:
/* print debug info if requested */
if(repeats <= 1) {
xmlSecDSigReferenceCtxPtr dsigRefCtx;
- size_t good, i, size;
+ xmlSecSize good, i, size;
FILE* f;
f = xmlSecAppOpenFile(xmlSecAppCmdLineParamGetString(&outputParam));