webservices: Set proper minor version for .NET Message Framing Protocol.

According to MC-NMF, the .Net Framing Protocol, "An implementation
conforming to this specification MUST set this field to 0x00."

Signed-off-by: Connor McAdams <cmcadams@codeweavers.com>
Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Connor McAdams 2022-04-13 10:40:29 -04:00 committed by Alexandre Julliard
parent a6ea269a96
commit aaf02584ad
1 changed files with 1 additions and 1 deletions

View File

@ -1415,7 +1415,7 @@ static enum known_encoding map_channel_encoding( struct channel *channel )
}
#define FRAME_VERSION_MAJOR 1
#define FRAME_VERSION_MINOR 1
#define FRAME_VERSION_MINOR 0
static HRESULT write_preamble( struct channel *channel )
{