version.h revision 92559
112129Smlarsson/* $OpenBSD: version.h,v 1.28 2002/03/06 00:25:55 markus Exp $ */
213184Skbarrett/* $FreeBSD: head/crypto/openssh/version.h 92559 2002-03-18 10:09:43Z des $ */
312129Smlarsson
412129Smlarsson#ifndef SSH_VERSION
512129Smlarsson
612129Smlarsson#define SSH_VERSION             (ssh_version_get())
712129Smlarsson#define SSH_VERSION_BASE        "OpenSSH_3.1"
812129Smlarsson#define SSH_VERSION_ADDENDUM    "FreeBSD localisations 20020318"
912129Smlarsson
1012129Smlarssonconst char *ssh_version_get(void);
1112129Smlarssonvoid ssh_version_set_addendum(const char *add);
1212129Smlarsson#endif /* SSH_VERSION */
1312782Sihse