aboutsummaryrefslogtreecommitdiff
path: root/src/namestore
diff options
context:
space:
mode:
authorMartin Schanzenbach <schanzen@gnunet.org>2022-01-18 11:05:41 +0100
committerMartin Schanzenbach <schanzen@gnunet.org>2022-01-18 11:05:41 +0100
commit54554ca531d018b965cc04fe5046e7df68eb27f9 (patch)
treec2c2128b3465f80d355a0d97d9c5ac30e5b01c91 /src/namestore
parent56b8101fe913c113fdb9fa2f9149861752bbea12 (diff)
downloadgnunet-54554ca531d018b965cc04fe5046e7df68eb27f9.tar.gz
gnunet-54554ca531d018b965cc04fe5046e7df68eb27f9.zip
GNS: Towards NFC
Diffstat (limited to 'src/namestore')
-rw-r--r--src/namestore/gnunet-service-namestore.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/namestore/gnunet-service-namestore.c b/src/namestore/gnunet-service-namestore.c
index cd953492e..cf1b555a5 100644
--- a/src/namestore/gnunet-service-namestore.c
+++ b/src/namestore/gnunet-service-namestore.c
@@ -1366,7 +1366,7 @@ handle_record_lookup (void *cls, const struct LabelLookupMessage *ll_msg)
1366 "Received NAMESTORE_RECORD_LOOKUP message for name `%s'\n", 1366 "Received NAMESTORE_RECORD_LOOKUP message for name `%s'\n",
1367 name_tmp); 1367 name_tmp);
1368 1368
1369 conv_name = GNUNET_GNSRECORD_string_to_lowercase (name_tmp); 1369 conv_name = GNUNET_GNSRECORD_string_normalize (name_tmp);
1370 if (NULL == conv_name) 1370 if (NULL == conv_name)
1371 { 1371 {
1372 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, 1372 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
@@ -1490,7 +1490,7 @@ handle_record_store (void *cls, const struct RecordStoreMessage *rp_msg)
1490 } 1490 }
1491 1491
1492 /* Extracting and converting private key */ 1492 /* Extracting and converting private key */
1493 conv_name = GNUNET_GNSRECORD_string_to_lowercase (name_tmp); 1493 conv_name = GNUNET_GNSRECORD_string_normalize (name_tmp);
1494 if (NULL == conv_name) 1494 if (NULL == conv_name)
1495 { 1495 {
1496 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, 1496 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,