Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-5]: src/crypto/dist/ssh Pullup 1.3 [itojun]:



details:   https://anonhg.NetBSD.org/src/rev/2ec1f1eae208
branches:  netbsd-1-5
changeset: 490010:2ec1f1eae208
user:      tv <tv%NetBSD.org@localhost>
date:      Mon Oct 30 22:53:12 2000 +0000

description:
Pullup 1.3 [itojun]:
make version identification string conform to SSH version string format.
version format must be like:
        SSH-[0-9]*.[0-9]*-[^-]*( .*)?
and previous string did not conform to the requirement (too many hyphens).
based on comment from markus@openbsd (openssh maintainer)

diffstat:

 crypto/dist/ssh/version.h |  11 +++++++++--
 1 files changed, 9 insertions(+), 2 deletions(-)

diffs (16 lines):

diff -r 0328c4bb1b45 -r 2ec1f1eae208 crypto/dist/ssh/version.h
--- a/crypto/dist/ssh/version.h Mon Oct 30 22:51:34 2000 +0000
+++ b/crypto/dist/ssh/version.h Mon Oct 30 22:53:12 2000 +0000
@@ -1,3 +1,10 @@
-/*     $NetBSD: version.h,v 1.1.1.1.2.2 2000/10/03 21:55:26 lukem Exp $        */
+/*     $NetBSD: version.h,v 1.1.1.1.2.3 2000/10/30 22:53:12 tv Exp $   */
+
+#define __OPENSSH_VERSION      "OpenSSH_2.2.0"
+#define __NETBSDSSH_VERSION    "NetBSD_Secure_Shell-20001003"
 
-#define SSH_VERSION    "NetBSD_Secure_Shell-20001003"
+/*
+ * it is important to retain OpenSSH version identification part, it is
+ * used for bug compatibility operation.  present NetBSD SSH version as comment.
+ */
+#define SSH_VERSION    (__OPENSSH_VERSION " " __NETBSDSSH_VERSION)



Home | Main Index | Thread Index | Old Index