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
This commit is contained in:
Dag-Erling Smørgrav 2002-04-02 21:53:54 +00:00
parent 671eafe203
commit 43e73ba0c2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=93701
3 changed files with 3 additions and 2 deletions

View file

@ -36,3 +36,4 @@
# Cipher 3des # Cipher 3des
# Ciphers aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc # Ciphers aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc
# EscapeChar ~ # EscapeChar ~
# VersionAddendum FreeBSD-20020402

View file

@ -12,7 +12,7 @@
# Note that some of FreeBSD's defaults differ from OpenBSD's, and # Note that some of FreeBSD's defaults differ from OpenBSD's, and
# FreeBSD has a few additional options. # FreeBSD has a few additional options.
#VersionAddendum FreeBSD localisations 20020318 #VersionAddendum FreeBSD-20020402
#Port 22 #Port 22
#Protocol 2,1 #Protocol 2,1

View file

@ -5,7 +5,7 @@
#define SSH_VERSION (ssh_version_get()) #define SSH_VERSION (ssh_version_get())
#define SSH_VERSION_BASE "OpenSSH_3.1" #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); const char *ssh_version_get(void);
void ssh_version_set_addendum(const char *add); void ssh_version_set_addendum(const char *add);