diff options
author | aiju <devnull@localhost> | 2017-04-24 16:07:34 +0000 |
---|---|---|
committer | aiju <devnull@localhost> | 2017-04-24 16:07:34 +0000 |
commit | fbf64184dff33adc9dec19db243f0eaba3594140 (patch) | |
tree | 7bb377d175fd0e1d68039596656466869c54b866 /sys/src/cmd/ssh.c | |
parent | f8eb5a1d13c1911c95fd26fbbc300e74aee558af (diff) |
ssh: fix typo
Diffstat (limited to 'sys/src/cmd/ssh.c')
-rw-r--r-- | sys/src/cmd/ssh.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/ssh.c b/sys/src/cmd/ssh.c index a486c9fb4..4595153da 100644 --- a/sys/src/cmd/ssh.c +++ b/sys/src/cmd/ssh.c @@ -827,7 +827,7 @@ passauth(void) 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; |