Index: uspace/app/netecho/comm.c
===================================================================
--- uspace/app/netecho/comm.c	(revision ec7902df3bea37028cfd215b507c5248f4e054dd)
+++ uspace/app/netecho/comm.c	(revision b3b48f4c5a21ad9952bcb7d8d51353f60b59d3c3)
@@ -52,5 +52,4 @@
 static udp_t *udp;
 static udp_assoc_t *assoc;
-static inet_ep_t remote;
 
 #define RECV_BUF_SIZE 1024
@@ -185,5 +184,5 @@
 errno_t comm_send(void *data, size_t size)
 {
-	errno_t rc = udp_assoc_send_msg(assoc, &remote, data, size);
+	errno_t rc = udp_assoc_send_msg(assoc, NULL, data, size);
 	if (rc != EOK)
 		return EIO;
