mirror of https://gitee.com/openkylin/openssh.git
12 lines
316 B
C
12 lines
316 B
C
/* $OpenBSD: version.h,v 1.86 2020/02/14 00:39:20 djm Exp $ */
|
|
|
|
#define SSH_VERSION "OpenSSH_8.2"
|
|
|
|
#define SSH_PORTABLE "p1"
|
|
#define SSH_RELEASE_MINIMUM SSH_VERSION SSH_PORTABLE
|
|
#ifdef SSH_EXTRAVERSION
|
|
#define SSH_RELEASE SSH_RELEASE_MINIMUM " " SSH_EXTRAVERSION
|
|
#else
|
|
#define SSH_RELEASE SSH_RELEASE_MINIMUM
|
|
#endif
|