diff options
-rw-r--r-- | src/openssl.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/openssl.c b/src/openssl.c index df5c524..acd2454 100644 --- a/src/openssl.c +++ b/src/openssl.c | |||
@@ -3550,8 +3550,8 @@ static int md_update(lua_State *L) { | |||
3550 | 3550 | ||
3551 | md_update_(L, ctx, 2, lua_gettop(L)); | 3551 | md_update_(L, ctx, 2, lua_gettop(L)); |
3552 | 3552 | ||
3553 | lua_pushboolean(L, 1); | 3553 | lua_pushvalue(L, 1); |
3554 | 3554 | ||
3555 | return 1; | 3555 | return 1; |
3556 | } /* md_update() */ | 3556 | } /* md_update() */ |
3557 | 3557 | ||
@@ -3653,8 +3653,8 @@ static int hmac_update(lua_State *L) { | |||
3653 | 3653 | ||
3654 | hmac_update_(L, ctx, 2, lua_gettop(L)); | 3654 | hmac_update_(L, ctx, 2, lua_gettop(L)); |
3655 | 3655 | ||
3656 | lua_pushboolean(L, 1); | 3656 | lua_pushvalue(L, 1); |
3657 | 3657 | ||
3658 | return 1; | 3658 | return 1; |
3659 | } /* hmac_update() */ | 3659 | } /* hmac_update() */ |
3660 | 3660 | ||