aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/hello/hello-uri.c4
-rw-r--r--src/include/gnunet_hello_uri_lib.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/hello/hello-uri.c b/src/hello/hello-uri.c
index 83d43fa2b..25f8948fe 100644
--- a/src/hello/hello-uri.c
+++ b/src/hello/hello-uri.c
@@ -341,8 +341,8 @@ GNUNET_HELLO_builder_new (const struct GNUNET_PeerIdentity *pid)
341} 341}
342 342
343 343
344struct GNUNET_PeerIdentity * 344const struct GNUNET_PeerIdentity *
345GNUNET_HELLO_builder_get_id (struct GNUNET_HELLO_Builder *builder) 345GNUNET_HELLO_builder_get_id (const struct GNUNET_HELLO_Builder *builder)
346{ 346{
347 return &builder->pid; 347 return &builder->pid;
348} 348}
diff --git a/src/include/gnunet_hello_uri_lib.h b/src/include/gnunet_hello_uri_lib.h
index 858b60793..1c804f590 100644
--- a/src/include/gnunet_hello_uri_lib.h
+++ b/src/include/gnunet_hello_uri_lib.h
@@ -72,8 +72,8 @@ GNUNET_HELLO_builder_new (const struct GNUNET_PeerIdentity *pid);
72/** 72/**
73 * Get the PeerIdentity for this builder. 73 * Get the PeerIdentity for this builder.
74 */ 74 */
75struct GNUNET_PeerIdentity * 75const struct GNUNET_PeerIdentity *
76GNUNET_HELLO_builder_get_id (struct GNUNET_HELLO_Builder *builder); 76GNUNET_HELLO_builder_get_id (const struct GNUNET_HELLO_Builder *builder);
77 77
78 78
79/** 79/**