From 8fd31f3ad29abcc878ba08ccb2f26c345de9598a Mon Sep 17 00:00:00 2001 From: Bruno Silvestre Date: Fri, 18 Apr 2014 22:50:40 -0300 Subject: [PATCH] Wrong type. --- src/x509.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/x509.c b/src/x509.c index 5e7a1dd..36406b8 100644 --- a/src/x509.c +++ b/src/x509.c @@ -86,7 +86,7 @@ static void push_asn1_objname(lua_State* L, ASN1_OBJECT *object, int no_name) */ static void push_asn1_string(lua_State* L, ASN1_STRING *string, int encode) { - size_t len; + int len; unsigned char *data; if (!string) lua_pushnil(L);