Crank V8.9

This commit is contained in:
Balu Gajjala 2022-03-15 13:13:19 -07:00
parent d328deb956
commit 73c976878e
4 changed files with 6 additions and 6 deletions

View File

@ -51,8 +51,8 @@ END
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 8,6,0,0
PRODUCTVERSION 8,6,0,0
FILEVERSION 8,9,0,0
PRODUCTVERSION 8,9,0,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
@ -67,9 +67,9 @@ BEGIN
BEGIN
BLOCK "040904b0"
BEGIN
VALUE "FileVersion", "8.6.0.0"
VALUE "FileVersion", "8.9.0.0"
VALUE "ProductName", "OpenSSH for Windows"
VALUE "ProductVersion", "OpenSSH_8.6p1 for Windows"
VALUE "ProductVersion", "OpenSSH_8.9p1 for Windows"
END
END
BLOCK "VarFileInfo"

View File

@ -337,7 +337,6 @@ sigaction(int signum, const struct sigaction * act, struct sigaction * oldact)
}
if (signum >= W32_SIGMAX) {
error_f("Invalid signum:%d", signum);
errno = EINVAL;
return r;
}

View File

@ -1192,7 +1192,7 @@ do_setup_env(struct ssh *ssh, Session *s, const char *shell)
if (debug_flag) {
/* dump the environment */
fprintf(stderr, "Environment:");
fprintf(stderr, "Environment:\n");
for (i = 0; env[i]; i++)
fprintf(stderr, " %.200s\n", env[i]);
}

View File

@ -64,6 +64,7 @@
#include "sftp.h"
#include "sftp-common.h"
#include "sftp-client.h"
extern volatile sig_atomic_t interrupted;
extern int showprogress;