NetBSD/crypto/dist/ssh/version.h
itojun f3f11aec78 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)
2000-10-28 13:41:55 +00:00

11 lines
391 B
C

/* $NetBSD: version.h,v 1.3 2000/10/28 13:41:55 itojun Exp $ */
#define __OPENSSH_VERSION "OpenSSH_2.2.0"
#define __NETBSDSSH_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)