Index: uspace/srv/hid/rfb/rfb.c
===================================================================
--- uspace/srv/hid/rfb/rfb.c	(revision fab2746a5541d35bc79cbed917f66153231e4a4b)
+++ uspace/srv/hid/rfb/rfb.c	(revision 523b17ab2f8c2e7a9e49c9db766a7367e421455d)
@@ -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;
 	}
