diff options
author | Schanzenbach, Martin <mschanzenbach@posteo.de> | 2019-12-01 12:32:14 +0100 |
---|---|---|
committer | Schanzenbach, Martin <mschanzenbach@posteo.de> | 2019-12-01 12:32:14 +0100 |
commit | 520dce09be20c1961f0c419e46a773f3247683cc (patch) | |
tree | a33483fd24fbe2651d2942a9edc51b53e673632a /src | |
parent | bab0de2b00129e13bd17ab5c3480eda894159b31 (diff) |
ifdef guard changes for LSD001/0.12
Diffstat (limited to 'src')
-rw-r--r-- | src/gns/gnunet-gns.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gns/gnunet-gns.c b/src/gns/gnunet-gns.c index 0107a313a..600a9c9a5 100644 --- a/src/gns/gnunet-gns.c +++ b/src/gns/gnunet-gns.c @@ -229,7 +229,6 @@ run (void *cls, (void) cls; (void) args; (void) cfgfile; - Idna_rc rc; cfg = c; to_task = NULL; @@ -239,12 +238,15 @@ run (void *cls, if (NULL != (colon = strchr (lookup_name, ':'))) *colon = '\0'; } +#ifdef LSD001 + Idna_rc rc; /** * If DNS compatibility is requested, we first verify that the * lookup_name is in a DNS format. If yes, we convert it to UTF-8. */ if (GNUNET_YES == dns_compat) { +#endif if (GNUNET_OK != GNUNET_DNSPARSER_check_name (lookup_name)) { fprintf (stderr, @@ -253,6 +255,7 @@ run (void *cls, global_ret = 3; return; } +#ifdef LSD001 if (IDNA_SUCCESS != (rc = idna_to_unicode_8z8z (lookup_name, &idna_name, IDNA_ALLOW_UNASSIGNED))) @@ -266,6 +269,7 @@ run (void *cls, } lookup_name = idna_name; } +#endif if (GNUNET_YES != GNUNET_CLIENT_test (cfg, "arm")) |