git: 9front

Download patch

ref: ac52447e91b8b30c7f7bde5f00a6964fb8df9c41
parent: 268cc3faad2e414c31b19573f7627f2b24a95811
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Wed Jan 6 01:00:22 EST 2016

rx: theres no p9sk2 anymore

--- a/sys/src/cmd/rx.c
+++ b/sys/src/cmd/rx.c
@@ -59,14 +59,9 @@
 	host = argv[0];
 	args = buildargs(&argv[1]);
 
-	/* try rexexec p9any then dial again with p9sk2 */
 	fd = call(0, host, "rexexec", &addr);
 	if(fd >= 0)
 		rex(fd, args, "p9any");
-	close(fd);
-	fd = call(0, host, "rexexec", &addr);
-	if(fd >= 0)
-		rex(fd, args, "p9sk2");
 	close(fd);
 
 	/* if there's an ssh port, try that */
--