summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheJackiMonster <thejackimonster@gmail.com>2024-01-08 17:40:34 +0100
committerTheJackiMonster <thejackimonster@gmail.com>2024-01-08 17:40:34 +0100
commit7e912b5ef0528874c95d8621e5fc55ae05f2d60c (patch)
tree35af126c07c169e2befedad36a1d5a0c08b2d979
parented1fcc0c4dd002c136dde63b0da9dc7c13577e28 (diff)
-fix warningsv0.21.0-talerdev.3
Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
-rw-r--r--src/plugin/messenger/plugin_gnsrecord_messenger.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugin/messenger/plugin_gnsrecord_messenger.c b/src/plugin/messenger/plugin_gnsrecord_messenger.c
index ed675dd1d..81763e3b5 100644
--- a/src/plugin/messenger/plugin_gnsrecord_messenger.c
+++ b/src/plugin/messenger/plugin_gnsrecord_messenger.c
@@ -1,6 +1,6 @@
/*
This file is part of GNUnet.
- Copyright (C) 2021--2023 GNUnet e.V.
+ Copyright (C) 2021--2024 GNUnet e.V.
GNUnet is free software: you can redistribute it and/or modify it
under the terms of the GNU Affero General Public License as published
@@ -126,7 +126,7 @@ messenger_string_to_value (void *cls,
{
case GNUNET_GNSRECORD_TYPE_MESSENGER_ROOM_ENTRY:
{
- char key[103];
+ char key[104];
const char *dash;
struct GNUNET_PeerIdentity door;
@@ -168,7 +168,7 @@ messenger_string_to_value (void *cls,
}
case GNUNET_GNSRECORD_TYPE_MESSENGER_ROOM_DETAILS:
{
- char flags[7];
+ char flags[8];
const char *dash;
if ((NULL == (dash = strchr (s, '-'))) ||