aboutsummaryrefslogtreecommitdiff
path: root/src/gnsrecord
diff options
context:
space:
mode:
authorMartin Schanzenbach <schanzen@gnunet.org>2022-02-15 14:37:56 +0100
committerMartin Schanzenbach <schanzen@gnunet.org>2022-02-15 14:37:56 +0100
commitf72ffa1a93532ef05518e697102519757ef22bfc (patch)
tree8308e099875a62d18512dabaf64a6def00b83eac /src/gnsrecord
parent336acc33010eb725c873791ed6eb9039cb1aedd2 (diff)
downloadgnunet-f72ffa1a93532ef05518e697102519757ef22bfc.tar.gz
gnunet-f72ffa1a93532ef05518e697102519757ef22bfc.zip
GNS: Allow lowercase and uppercase
According to LSD0001, atm lowercase and uppercase names are allowed and different.
Diffstat (limited to 'src/gnsrecord')
-rw-r--r--src/gnsrecord/gnsrecord_misc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gnsrecord/gnsrecord_misc.c b/src/gnsrecord/gnsrecord_misc.c
index 9b5e47c4c..4cc77b59f 100644
--- a/src/gnsrecord/gnsrecord_misc.c
+++ b/src/gnsrecord/gnsrecord_misc.c
@@ -52,7 +52,7 @@ GNUNET_GNSRECORD_string_normalize (const char *src)
52{ 52{
53 char *res; 53 char *res;
54 res = GNUNET_strdup (src); 54 res = GNUNET_strdup (src);
55 GNUNET_STRINGS_utf8_tolower (src, res); 55 //GNUNET_STRINGS_utf8_tolower (src, res);
56 GNUNET_STRINGS_utf8_normalize (src, res); 56 GNUNET_STRINGS_utf8_normalize (src, res);
57 return res; 57 return res;
58} 58}