summaryrefslogtreecommitdiffstats
path: root/apps/engine.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2001-02-09 18:16:12 +0000
committerDr. Stephen Henson <steve@openssl.org>2001-02-09 18:16:12 +0000
commitc063f2c5ec5afda27ffda674ccd593289fd6f4af (patch)
tree48c44e1a36ab7fee9cdbe0d0056409d4ba06f93b /apps/engine.c
parentc47c6196802a5d018665f8f5617986bcaa6a1787 (diff)
Various Win32 related fixed. Make no-krb5 work in mkdef.pl .
Fix warning in apps/engine.c Remove definitions of deleted functions. Add missing definition of X509_VAL.
Diffstat (limited to 'apps/engine.c')
-rw-r--r--apps/engine.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/engine.c b/apps/engine.c
index f11206f570..13de0bdaad 100644
--- a/apps/engine.c
+++ b/apps/engine.c
@@ -99,7 +99,7 @@ static int append_buf(char **buf, char *s, int *size, int step)
if (**buf != '\0')
l += 2; /* ", " */
- if (strlen(*buf) + strlen(s) >= *size)
+ if (strlen(*buf) + strlen(s) >= (unsigned int)*size)
{
*size += step;
*buf = OPENSSL_realloc(*buf, *size);