aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_unix.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-04-25 12:37:19 +0000
committerChristian Grothoff <christian@grothoff.org>2012-04-25 12:37:19 +0000
commitb70a00756b53bbbbd008ead49c8bf00474807a00 (patch)
tree905c2febe2a3a4a3b4fc792e01d9d54359118596 /src/transport/plugin_transport_unix.c
parent9c4f5c8f1b481103f871c20bb568ff7d1911cb10 (diff)
downloadgnunet-b70a00756b53bbbbd008ead49c8bf00474807a00.tar.gz
gnunet-b70a00756b53bbbbd008ead49c8bf00474807a00.zip
-LRN: misc patches / fixes
Diffstat (limited to 'src/transport/plugin_transport_unix.c')
-rw-r--r--src/transport/plugin_transport_unix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/transport/plugin_transport_unix.c b/src/transport/plugin_transport_unix.c
index 04c8a45be..ecfe15783 100644
--- a/src/transport/plugin_transport_unix.c
+++ b/src/transport/plugin_transport_unix.c
@@ -1003,7 +1003,7 @@ unix_string_to_address (void *cls, const char *addr, uint16_t addrlen,
1003 return GNUNET_SYSERR; 1003 return GNUNET_SYSERR;
1004 } 1004 }
1005 1005
1006 (*buf) = strdup (addr); 1006 (*buf) = GNUNET_strdup (addr);
1007 (*added) = strlen (addr) + 1; 1007 (*added) = strlen (addr) + 1;
1008 return GNUNET_OK; 1008 return GNUNET_OK;
1009} 1009}