[PATCH 1/2] webservices: Set proper minor version for .NET Message Framing Protocol.

Connor McAdams cmcadams at codeweavers.com
Wed Apr 13 09:40:29 CDT 2022


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 at codeweavers.com>
---
 dlls/webservices/channel.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/webservices/channel.c b/dlls/webservices/channel.c
index a9142bedee9..1148744346c 100644
--- a/dlls/webservices/channel.c
+++ b/dlls/webservices/channel.c
@@ -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 )
 {
-- 
2.25.1




More information about the wine-devel mailing list