aboutsummaryrefslogtreecommitdiff
path: root/src/social
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-02-22 21:29:42 +0100
committerChristian Grothoff <christian@grothoff.org>2017-02-22 21:29:42 +0100
commitcd9531932c72478a3f7c17eb78238daa2302b2ef (patch)
tree6f3fce90b69107a3ecc8649ff93323b0d09c3d7d /src/social
parent9bc1c69e28bb4ac07b9bf9f5ed2192f78912c5f3 (diff)
downloadgnunet-cd9531932c72478a3f7c17eb78238daa2302b2ef.tar.gz
gnunet-cd9531932c72478a3f7c17eb78238daa2302b2ef.zip
remove support for reverse lookup and shortening from GNS (#4849)
Diffstat (limited to 'src/social')
-rw-r--r--src/social/gnunet-service-social.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/social/gnunet-service-social.c b/src/social/gnunet-service-social.c
index e6ee24a4f..dee68fdb8 100644
--- a/src/social/gnunet-service-social.c
+++ b/src/social/gnunet-service-social.c
@@ -1955,9 +1955,11 @@ handle_client_guest_enter_by_name (void *cls,
1955 GNUNET_memcpy (gcls->password, password, password_size); 1955 GNUNET_memcpy (gcls->password, password, password_size);
1956 } 1956 }
1957 1957
1958 GNUNET_GNS_lookup (gns, gns_name, &greq->ego_pub_key, 1958 GNUNET_GNS_lookup (gns, gns_name,
1959 GNUNET_GNSRECORD_TYPE_PLACE, GNUNET_GNS_LO_DEFAULT, 1959 &greq->ego_pub_key,
1960 NULL, gns_result_guest_enter, gcls); 1960 GNUNET_GNSRECORD_TYPE_PLACE,
1961 GNUNET_GNS_LO_DEFAULT,
1962 &gns_result_guest_enter, gcls);
1961} 1963}
1962 1964
1963 1965