aboutsummaryrefslogtreecommitdiff
path: root/src/hello
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2014-01-14 13:24:52 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2014-01-14 13:24:52 +0000
commit78c8e788303f3c1dc35037b29dd3ed264306e0cc (patch)
treef6b340dd56c46d71e098bb31e207d53cb8ee59f5 /src/hello
parent6bbea7ecc4cc9bd1571b10c0530490b25f1762ca (diff)
downloadgnunet-78c8e788303f3c1dc35037b29dd3ed264306e0cc.tar.gz
gnunet-78c8e788303f3c1dc35037b29dd3ed264306e0cc.zip
missing option assignment
Diffstat (limited to 'src/hello')
-rw-r--r--src/hello/address.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/hello/address.c b/src/hello/address.c
index d708c73e5..b763414d2 100644
--- a/src/hello/address.c
+++ b/src/hello/address.c
@@ -89,6 +89,7 @@ GNUNET_HELLO_address_allocate (const struct GNUNET_PeerIdentity *peer,
89 memcpy (end, address, address_length); 89 memcpy (end, address, address_length);
90 addr->address_length = address_length; 90 addr->address_length = address_length;
91 addr->transport_name = &end[address_length]; 91 addr->transport_name = &end[address_length];
92 addr->local_info = local_info;
92 memcpy (&end[address_length], transport_name, slen); 93 memcpy (&end[address_length], transport_name, slen);
93 return addr; 94 return addr;
94} 95}