diff options
author | Matthias Wachs <wachs@net.in.tum.de> | 2011-06-09 16:35:01 +0000 |
---|---|---|
committer | Matthias Wachs <wachs@net.in.tum.de> | 2011-06-09 16:35:01 +0000 |
commit | f2b83070a67d6da2874564354281f258ee55b6fc (patch) | |
tree | e22f4a998e8ebd30dd604ae4e3ebcdd2bfc354c3 /src/transport/plugin_transport_udp.c | |
parent | 54752f33384c69de4cbac24e6dcdf3c32ee9daee (diff) |
Diffstat (limited to 'src/transport/plugin_transport_udp.c')
-rw-r--r-- | src/transport/plugin_transport_udp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/transport/plugin_transport_udp.c b/src/transport/plugin_transport_udp.c index 58135803a..8f95b9ee6 100644 --- a/src/transport/plugin_transport_udp.c +++ b/src/transport/plugin_transport_udp.c @@ -2267,8 +2267,8 @@ libgnunet_plugin_transport_udp_init (void *cls) &external_address))) { GNUNET_log (GNUNET_ERROR_TYPE_ERROR, - _("Require EXTERNAL_ADDRESS for service `%s' in configuration (either BEHIND_NAT or ALLOW_NAT set to YES)!\n"), - "transport-udp"); + _("Require EXTERNAL_ADDRESS in section `%s' in configuration (either BEHIND_NAT or ALLOW_NAT set to YES)!\n"), + "nat"); return NULL; } @@ -2285,8 +2285,8 @@ libgnunet_plugin_transport_udp_init (void *cls) &internal_address))) { GNUNET_log (GNUNET_ERROR_TYPE_ERROR, - _("Require INTERNAL_ADDRESS for service `%s' in configuration!\n"), - "transport-udp"); + _("Require INTERNAL_ADDRESS in section `%s' in configuration!\n"), + "nat"); GNUNET_free_non_null(external_address); return NULL; } |