1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-07-31 00:03:07 +03:00

tests: Fix size for bob_ssh_cert

Fixes a gcc8 warning.

Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
This commit is contained in:
Andreas Schneider
2018-05-08 12:42:05 +02:00
parent f4e57a6e22
commit bcaeaf17af

View File

@ -496,7 +496,7 @@ static void torture_auth_cert(void **state) {
ssh_key privkey = NULL;
ssh_key cert = NULL;
char bob_ssh_key[1024];
char bob_ssh_cert[1024];
char bob_ssh_cert[2048];
struct passwd *pwd;
int rc;