aboutsummaryrefslogtreecommitdiff
path: root/src/gns/gns_api.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-08-13 17:10:07 +0000
committerChristian Grothoff <christian@grothoff.org>2013-08-13 17:10:07 +0000
commitbfbbb1e8700093783da55c84221fc688eee4c9a0 (patch)
tree83693440965fff521bc21af1debf963b95d77471 /src/gns/gns_api.c
parentee32003b7e606767f9b89715cb956d863fe067d9 (diff)
downloadgnunet-bfbbb1e8700093783da55c84221fc688eee4c9a0.tar.gz
gnunet-bfbbb1e8700093783da55c84221fc688eee4c9a0.zip
-getting rid of duplication of record type values / enum GNUNET_GNS_RecordType
Diffstat (limited to 'src/gns/gns_api.c')
-rw-r--r--src/gns/gns_api.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gns/gns_api.c b/src/gns/gns_api.c
index e672c5687..64f5144c6 100644
--- a/src/gns/gns_api.c
+++ b/src/gns/gns_api.c
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 (C) 2009, 2010, 2012 Christian Grothoff (and other contributing authors) 3 (C) 2009-2013 Christian Grothoff (and other contributing authors)
4 4
5 GNUnet is free software; you can redistribute it and/or modify 5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published 6 it under the terms of the GNU General Public License as published
@@ -821,7 +821,7 @@ struct GNUNET_GNS_LookupRequest*
821GNUNET_GNS_lookup_zone (struct GNUNET_GNS_Handle *handle, 821GNUNET_GNS_lookup_zone (struct GNUNET_GNS_Handle *handle,
822 const char *name, 822 const char *name,
823 struct GNUNET_CRYPTO_ShortHashCode *zone, 823 struct GNUNET_CRYPTO_ShortHashCode *zone,
824 enum GNUNET_GNS_RecordType type, 824 int type,
825 int only_cached, 825 int only_cached,
826 struct GNUNET_CRYPTO_EccPrivateKey *shorten_key, 826 struct GNUNET_CRYPTO_EccPrivateKey *shorten_key,
827 GNUNET_GNS_LookupResultProcessor proc, 827 GNUNET_GNS_LookupResultProcessor proc,
@@ -900,7 +900,7 @@ GNUNET_GNS_lookup_zone (struct GNUNET_GNS_Handle *handle,
900struct GNUNET_GNS_LookupRequest * 900struct GNUNET_GNS_LookupRequest *
901GNUNET_GNS_lookup (struct GNUNET_GNS_Handle *handle, 901GNUNET_GNS_lookup (struct GNUNET_GNS_Handle *handle,
902 const char *name, 902 const char *name,
903 enum GNUNET_GNS_RecordType type, 903 int type,
904 int only_cached, 904 int only_cached,
905 struct GNUNET_CRYPTO_EccPrivateKey *shorten_key, 905 struct GNUNET_CRYPTO_EccPrivateKey *shorten_key,
906 GNUNET_GNS_LookupResultProcessor proc, 906 GNUNET_GNS_LookupResultProcessor proc,