From dea2be5d3fa5cb6f4ca24cfae4d9a8c43129d0ee Mon Sep 17 00:00:00 2001 From: Jonathan G Rennison Date: Mon, 31 Aug 2020 19:02:33 +0100 Subject: [PATCH] Increase size of ContentInfo::name field --- src/network/core/tcp_content.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/network/core/tcp_content.h b/src/network/core/tcp_content.h index be1cc6e77e..fa9faf7747 100644 --- a/src/network/core/tcp_content.h +++ b/src/network/core/tcp_content.h @@ -66,7 +66,7 @@ struct ContentInfo { ContentID id; ///< Unique (server side) ID for the content uint32 filesize; ///< Size of the file char filename[48]; ///< Filename (for the .tar.gz; only valid on download) - char name[32]; ///< Name of the content + char name[64]; ///< Name of the content char version[16]; ///< Version of the content char url[96]; ///< URL related to the content char description[512]; ///< Description of the content