Index: uspace/lib/c/generic/net/modules.c
===================================================================
--- uspace/lib/c/generic/net/modules.c	(revision 124c0612c8daeba21701095e42877933875fb33a)
+++ uspace/lib/c/generic/net/modules.c	(revision df58e448060bb6d63ea118d30cb9b3b9b8c059bf)
@@ -143,7 +143,8 @@
 	if (phone >= 0) {
 		/* Request the bidirectional connection */
+		sysarg_t taskhash;
 		sysarg_t phonehash;
 		
-		rc = ipc_connect_to_me(phone, arg1, arg2, arg3, NULL,
+		rc = ipc_connect_to_me(phone, arg1, arg2, arg3, &taskhash,
 		    &phonehash);
 		if (rc != EOK) {
@@ -151,5 +152,6 @@
 			return rc;
 		}
-		async_new_connection(phonehash, 0, NULL, client_receiver);
+		async_new_connection(taskhash, phonehash, 0, NULL,
+		    client_receiver);
 	}
 	
