version.h file uses WIN32_FIXME and ssh.exe client shows build & date
version.h file retains non win32 original code as it should; feature added for win32 for ssh.exe to show build and date like sshd.exe rather than a fixed date we had inserted before in version.h file.
This commit is contained in:
parent
e918f7c731
commit
6c4fc9c4c5
5
ssh.c
5
ssh.c
|
@ -865,8 +865,13 @@ main(int ac, char **av)
|
|||
}
|
||||
break;
|
||||
case 'V':
|
||||
#ifndef WIN32_FIXME
|
||||
fprintf(stderr, "%s, %s\n",
|
||||
SSH_RELEASE,
|
||||
#else
|
||||
fprintf(stderr, "%s %s, %s\n",
|
||||
SSH_RELEASE, __DATE__ " " __TIME__ ,
|
||||
#endif
|
||||
#ifdef WITH_OPENSSL
|
||||
SSLeay_version(SSLEAY_VERSION)
|
||||
#else
|
||||
|
|
Loading…
Reference in New Issue