invert ifdef guard
authorSchanzenbach, Martin <mschanzenbach@posteo.de>
Sat, 30 Nov 2019 14:20:45 +0000 (15:20 +0100)
committerSchanzenbach, Martin <mschanzenbach@posteo.de>
Sat, 30 Nov 2019 14:20:45 +0000 (15:20 +0100)
src/gns/gnunet-service-gns_resolver.c
src/gns/plugin_gnsrecord_gns.c

index bb319633aee6b2f1813d195d175048bfaf6ff65e..9792aff5837bad49b770fe3d7e4e1921a6bb1afa 100644 (file)
@@ -1710,7 +1710,7 @@ recursive_gns2dns_resolution (struct GNS_ResolverHandle *rh,
     n = GNUNET_DNSPARSER_parse_name (rd[i].data,
                                      rd[i].data_size,
                                      &off);
-#ifndef LSD001
+#ifdef LSD001
     ip = GNUNET_strdup (&rd[i].data[off]);
     off += strlen (ip) + 1;
 #else
@@ -1837,7 +1837,7 @@ recursive_gns2dns_resolution (struct GNS_ResolverHandle *rh,
                    (0 != rh->name_resolution_pos) ? "." : "",
                    ns);
   GNUNET_free (ns);
-#ifndef LSD001
+#ifdef LSD001
   /* the GNS name is UTF-8 and may include multibyte chars.
    * We have to convert the combined name to a DNS-compatible IDNA.
    */
index 52c35ce100736312f5560b050d61e1c694636a7e..38c3582c14f87d2a85aa3630be8cddf2ac20ec87 100644 (file)
@@ -78,7 +78,7 @@ gns_value_to_string (void *cls,
         GNUNET_free_non_null (ns);
         return NULL;
       }
-#ifndef LSD001 //DNS server IP/name must be UTF-8
+#ifdef LSD001 //DNS server IP/name must be UTF-8
       ip = GNUNET_strdup((char*) &data[off]);
 #else
       // Must be IP or DNS name
@@ -226,7 +226,7 @@ gns_string_to_value (void *cls,
         GNUNET_free (cpy);
         return GNUNET_SYSERR;
       }
-#ifndef LSD001 //The DNS server location/name is in UTF-8
+#ifdef LSD001 //The DNS server location/name is in UTF-8
       GNUNET_memcpy (&nsbuf[off], at, strlen (at) + 1);
       off += strlen (at) + 1;
 #else