[Mew-dist 16562] mew-ssh.el for OpenSSH 2.5.1p1
Shun-ichi GOTO
gotoh at example.com
2001年 2月 22日 (木) 01:22:38 JST
OpenSSH 2.5.1p1 では、ssh -V の出力メッセージが以下のように
変わっています。
$ ssh -V
OpenSSH_2.5.1p1, SSH protocols 1.5/2.0, OpenSSL 0x0090581f
$
なので、mew-ssh.elはこんな風に修正が必要です。
Index: mew-ssh.el
===================================================================
RCS file: /Master/mew-1.95/mew-ssh.el,v
retrieving revision 1.1.1.5
diff -u -u -r1.1.1.5 mew-ssh.el
--- mew-ssh.el 2001/02/15 11:30:39 1.1.1.5
+++ mew-ssh.el 2001/02/21 15:11:01
@@ -213,7 +213,7 @@
(setq mew-ssh-ver 1))
((looking-at (concat mew-prog-ssh ": SSH Secure Shell 2"))
(setq mew-ssh-ver 1))
- ((looking-at "SSH Version OpenSSH\\|SSH Version NetBSD")
+ ((looking-at "\\(SSH Version \\)?\\(OpenSSH\\|NetBSD\\)")
(setq mew-ssh-ver 2))
(t
(setq mew-ssh-ver nil))))
--- Regards,
Shun-ichi Goto <gotoh at example.com>
R&D Group, TAIYO Corp., Tokyo, JAPAN
Mew-dist メーリングリストの案内