git: 9front

Download patch

ref: ec26d8952160093387f22f7ad721919fff34aa10
parent: 73d4febd1a0bc7ca718c72b27cbff6750cfff171
author: aiju <devnull@localhost>
date: Mon Apr 24 12:07:34 EDT 2017

ssh: fix typo

--- a/sys/src/cmd/ssh.c
+++ b/sys/src/cmd/ssh.c
@@ -827,7 +827,7 @@
 	if(!authok(authmeth))
 		return -1;
 
-	up = auth_getuserpasswd(auth_getkey, "proto=pass servive=ssh user=%q server=%q thumb=%q",
+	up = auth_getuserpasswd(auth_getkey, "proto=pass service=ssh user=%q server=%q thumb=%q",
 		user, host, thumb);
 	if(up == nil)
 		return -1;
--