Skip to content

Commit e8dd250

Browse files
committed
Seems that I had the wrong type (u_int instead of size_t) in the definition
of ssh_aes_ctr() in cipher-ctr-mt.c. Thsi was causing the 'with errors' tests in the CI build to die. I have no idea whu this wasn't happening before.
1 parent c80ab46 commit e8dd250

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cipher-ctr-mt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ thread_loop(void *x)
415415
/* this may also benefit from upgrading to the EVP API */
416416
static int
417417
ssh_aes_ctr(EVP_CIPHER_CTX *ctx, u_char *dest, const u_char *src,
418-
u_int len)
418+
size_t len)
419419
{
420420
typedef union {
421421
#ifdef CIPHER_INT128_OK

0 commit comments

Comments
 (0)