git: 9front

Download patch

ref: 3192db41c0f860a13514a4e002679ba5e0963f3e
parent: fdc0b7c066cf4571022e6e33494c0291f6bb9c30
author: Jacob Moody <moody@posixcafe.org>
date: Wed Jul 21 12:16:29 EDT 2021

ssh: fix typo (thanks izaki)

--- a/sys/src/cmd/ssh.c
+++ b/sys/src/cmd/ssh.c
@@ -1270,7 +1270,7 @@
 	fprint(fd, "%s\r\n", send.v);
 	recv.v = readline();
 	if(debug)
-		fprint(2, "server verison: %s\n", recv.v);
+		fprint(2, "server version: %s\n", recv.v);
 	if(strncmp("SSH-2.0-", recv.v, 8) != 0)
 		sysfatal("bad server version: %s", recv.v);
 	recv.v = strdup(recv.v);
--