From 43e73ba0c27be6b3a25c57ec74315afe24b2aa38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Tue, 2 Apr 2002 21:53:54 +0000 Subject: [PATCH] Change the FreeBSD version addendum to "FreeBSD-20020402". This shortens the version string to 28 characters, which is below the 40-character limit specified in the proposed SECSH standard. Some servers, however (like the one built into the Foundry BigIron line of switches) will hang when confronted with a version string longer than 24 characters, so some users may need to shorten it further. Sponsored by: DARPA, NAI Labs --- crypto/openssh/ssh_config | 1 + crypto/openssh/sshd_config | 2 +- crypto/openssh/version.h | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/crypto/openssh/ssh_config b/crypto/openssh/ssh_config index d289d4ccb775..a1de6a8fb9bb 100644 --- a/crypto/openssh/ssh_config +++ b/crypto/openssh/ssh_config @@ -36,3 +36,4 @@ # Cipher 3des # Ciphers aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc # EscapeChar ~ +# VersionAddendum FreeBSD-20020402 diff --git a/crypto/openssh/sshd_config b/crypto/openssh/sshd_config index ac3c9f9d4ea1..e34c96424e1d 100644 --- a/crypto/openssh/sshd_config +++ b/crypto/openssh/sshd_config @@ -12,7 +12,7 @@ # Note that some of FreeBSD's defaults differ from OpenBSD's, and # FreeBSD has a few additional options. -#VersionAddendum FreeBSD localisations 20020318 +#VersionAddendum FreeBSD-20020402 #Port 22 #Protocol 2,1 diff --git a/crypto/openssh/version.h b/crypto/openssh/version.h index 7549aa569d7b..084dd226cdea 100644 --- a/crypto/openssh/version.h +++ b/crypto/openssh/version.h @@ -5,7 +5,7 @@ #define SSH_VERSION (ssh_version_get()) #define SSH_VERSION_BASE "OpenSSH_3.1" -#define SSH_VERSION_ADDENDUM "FreeBSD localisations 20020318" +#define SSH_VERSION_ADDENDUM "FreeBSD-20020402" const char *ssh_version_get(void); void ssh_version_set_addendum(const char *add);