diff options
author | Christian Grothoff <christian@grothoff.org> | 2015-05-25 20:59:29 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2015-05-25 20:59:29 +0000 |
commit | a1aee7611781a9991c31dbaa36d38c95ad5d5300 (patch) | |
tree | 76fa1711815f47f559fbdf02fffb9c5792837d26 /src/exit | |
parent | 33a7282c26b14f838ad6f1016b90b710cec5f93f (diff) |
-comments, doxygen, indentation, style fixes, working on test_gns_vpn
Diffstat (limited to 'src/exit')
-rw-r--r-- | src/exit/gnunet-daemon-exit.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/exit/gnunet-daemon-exit.c b/src/exit/gnunet-daemon-exit.c index 1afa292008..2a4d126518 100644 --- a/src/exit/gnunet-daemon-exit.c +++ b/src/exit/gnunet-daemon-exit.c @@ -3394,7 +3394,8 @@ add_services (int proto, * @param section name of section in config, equal to hostname */ static void -read_service_conf (void *cls, const char *section) +read_service_conf (void *cls, + const char *section) { char *cpy; @@ -3402,7 +3403,9 @@ read_service_conf (void *cls, const char *section) (0 != strcmp (".gnunet.", section + (strlen (section) - 8)))) return; if (GNUNET_OK == - GNUNET_CONFIGURATION_get_value_string (cfg, section, "UDP_REDIRECTS", + GNUNET_CONFIGURATION_get_value_string (cfg, + section, + "UDP_REDIRECTS", &cpy)) { add_services (IPPROTO_UDP, cpy, section); |