Index: uspace/srv/hid/rfb/rfb.c
===================================================================
--- uspace/srv/hid/rfb/rfb.c	(revision fab2746a5541d35bc79cbed917f66153231e4a4b)
+++ uspace/srv/hid/rfb/rfb.c	(revision 0d9b4a80dd3e94f98103805c143be2d4efef3f3a)
@@ -757,4 +757,10 @@
 	int rc;
 	
+	rc = tcp_create(&tcp);
+	if (rc != EOK) {
+		log_msg(LOG_DEFAULT, LVL_ERROR, "Error initializing TCP.");
+		goto error;
+	}
+	
 	inet_ep_init(&ep);
 	ep.port = port;
@@ -763,5 +769,5 @@
 	    &lst);
 	if (rc != EOK) {
-		log_msg(LOG_DEFAULT, LVL_ERROR, "Error creating listener.\n");
+		log_msg(LOG_DEFAULT, LVL_ERROR, "Error creating listener.");
 		goto error;
 	}
