From 156e9a0631d557f290c77a3919b7cf28735b8ba0 Mon Sep 17 00:00:00 2001 From: Tal Aloni Date: Sat, 25 Jan 2020 20:56:30 +0200 Subject: [PATCH] NetBios: NameQueryRequest: Removed incorrect ARCount value from constructor --- SMBLibrary/NetBios/NameServicePackets/NameQueryRequest.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/SMBLibrary/NetBios/NameServicePackets/NameQueryRequest.cs b/SMBLibrary/NetBios/NameServicePackets/NameQueryRequest.cs index 36ab9ec..a0f3b40 100644 --- a/SMBLibrary/NetBios/NameServicePackets/NameQueryRequest.cs +++ b/SMBLibrary/NetBios/NameServicePackets/NameQueryRequest.cs @@ -1,4 +1,4 @@ -/* Copyright (C) 2014 Tal Aloni . All rights reserved. +/* Copyright (C) 2014-2020 Tal Aloni . All rights reserved. * * You can redistribute this program and/or modify it under the terms of * the GNU Lesser Public License as published by the Free Software Foundation, @@ -24,7 +24,6 @@ namespace SMBLibrary.NetBios { Header = new NameServicePacketHeader(); Header.OpCode = NameServiceOperation.QueryRequest; - Header.ARCount = 1; Question = new QuestionSection(); }