aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_udp.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-11-03 21:38:45 +0000
committerChristian Grothoff <christian@grothoff.org>2010-11-03 21:38:45 +0000
commitd8abe51562c11473ebcb823ad67c529be2c9dc92 (patch)
tree95f6f53b8060d72c7c0b206c728ab03d73590292 /src/transport/plugin_transport_udp.c
parent721e49caeea6ba5073f8bc5c6c08359295c02bb5 (diff)
downloadgnunet-d8abe51562c11473ebcb823ad67c529be2c9dc92.tar.gz
gnunet-d8abe51562c11473ebcb823ad67c529be2c9dc92.zip
style improvments wrt Mantis 1614 patch
Diffstat (limited to 'src/transport/plugin_transport_udp.c')
-rw-r--r--src/transport/plugin_transport_udp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/transport/plugin_transport_udp.c b/src/transport/plugin_transport_udp.c
index 0f53719fe..4bd8c36d3 100644
--- a/src/transport/plugin_transport_udp.c
+++ b/src/transport/plugin_transport_udp.c
@@ -471,7 +471,7 @@ struct Plugin
471 /** 471 /**
472 * The process id of the server process (if behind NAT) 472 * The process id of the server process (if behind NAT)
473 */ 473 */
474 GNUNET_OS_Process *server_proc; 474 struct GNUNET_OS_Process *server_proc;
475 475
476}; 476};
477 477
@@ -702,7 +702,7 @@ run_gnunet_nat_client (struct Plugin *plugin, const char *addr, size_t addrlen)
702 char addr_buf[INET_ADDRSTRLEN]; 702 char addr_buf[INET_ADDRSTRLEN];
703 char *address_as_string; 703 char *address_as_string;
704 char *port_as_string; 704 char *port_as_string;
705 GNUNET_OS_Process *proc; 705 struct GNUNET_OS_Process *proc;
706 const struct IPv4UdpAddress *t4; 706 const struct IPv4UdpAddress *t4;
707 707
708 GNUNET_assert(addrlen == sizeof(struct IPv4UdpAddress)); 708 GNUNET_assert(addrlen == sizeof(struct IPv4UdpAddress));