summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2007-02-18 18:21:57 +0000
committerDr. Stephen Henson <steve@openssl.org>2007-02-18 18:21:57 +0000
commit5d5ca32fa1b34de7b7c869e9860929d033f9ffd7 (patch)
tree306785c9ecc32d1c434aeb2562531b5047c663ed /apps
parent52b8dad8ec6eb0dcada52851af5f9498af7a91be (diff)
Updates from 0.9.8-stable branch.
Diffstat (limited to 'apps')
-rw-r--r--apps/dgst.c2
-rw-r--r--apps/s_client.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/dgst.c b/apps/dgst.c
index 2e7b0792d8..5d82cb2e65 100644
--- a/apps/dgst.c
+++ b/apps/dgst.c
@@ -493,7 +493,7 @@ int do_fp(BIO *out, unsigned char *buf, BIO *bp, int sep, int binout,
else
{
BIO_write(out,title,strlen(title));
- for (i=0; i<len; i++)
+ for (i=0; i<(int)len; i++)
{
if (sep && (i != 0))
BIO_printf(out, ":");
diff --git a/apps/s_client.c b/apps/s_client.c
index d337081748..58e317a1a2 100644
--- a/apps/s_client.c
+++ b/apps/s_client.c
@@ -354,7 +354,7 @@ enum
PROTO_SMTP,
PROTO_POP3,
PROTO_IMAP,
- PROTO_FTP,
+ PROTO_FTP
};
int MAIN(int, char **);