From 803b6c9c9eb15db58a9f7e9cea93baa88c743277 Mon Sep 17 00:00:00 2001 From: Markus Uhlin Date: Fri, 17 Oct 2025 04:43:10 +0200 Subject: Fixed incorrect size --- FICS/copyfile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'FICS') diff --git a/FICS/copyfile.c b/FICS/copyfile.c index ca4e625..9f62a53 100644 --- a/FICS/copyfile.c +++ b/FICS/copyfile.c @@ -67,7 +67,7 @@ fics_copyfile(const char *p1, const char *p2, const bool post_checks) warnx("%s: total written mismatch total read", __func__); return false; } else if (post_checks) { - char buf[2][SHA1_DIGEST_LENGTH + 1]; + char buf[2][41]; char *str[2]; str[0] = &buf[0][0]; -- cgit v1.2.3