aboutsummaryrefslogtreecommitdiff
path: root/src/conversation/plugin_gnsrecord_conversation.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/conversation/plugin_gnsrecord_conversation.c')
-rw-r--r--src/conversation/plugin_gnsrecord_conversation.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conversation/plugin_gnsrecord_conversation.c b/src/conversation/plugin_gnsrecord_conversation.c
index e2bcf7ec9..91cae7261 100644
--- a/src/conversation/plugin_gnsrecord_conversation.c
+++ b/src/conversation/plugin_gnsrecord_conversation.c
@@ -118,12 +118,12 @@ conversation_string_to_value (void *cls,
118 case GNUNET_GNSRECORD_TYPE_PHONE: 118 case GNUNET_GNSRECORD_TYPE_PHONE:
119 { 119 {
120 struct GNUNET_CONVERSATION_PhoneRecord *pr; 120 struct GNUNET_CONVERSATION_PhoneRecord *pr;
121 char line_port[128]; 121 char line_port[103];
122 const char *dash; 122 const char *dash;
123 struct GNUNET_PeerIdentity peer; 123 struct GNUNET_PeerIdentity peer;
124 124
125 if ( (NULL == (dash = strchr (s, '-'))) || 125 if ( (NULL == (dash = strchr (s, '-'))) ||
126 (1 != sscanf (s, "%128s-", line_port)) || 126 (1 != sscanf (s, "%103s-", line_port)) ||
127 (GNUNET_OK != 127 (GNUNET_OK !=
128 GNUNET_CRYPTO_eddsa_public_key_from_string (dash + 1, 128 GNUNET_CRYPTO_eddsa_public_key_from_string (dash + 1,
129 strlen (dash + 1), 129 strlen (dash + 1),