spelling: further

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2022-10-23 16:02:15 -04:00
parent 015f27e345
commit e3d60ea268

View file

@ -135,8 +135,8 @@ type SMB_Message(header: SMB_Header, offset: uint16, command: uint8, is_orig: bo
}; };
type SMB_andx_command(header: SMB_Header, is_orig: bool, offset: uint16, command: uint8) = case command of { type SMB_andx_command(header: SMB_Header, is_orig: bool, offset: uint16, command: uint8) = case command of {
0xff -> no_futher_commands : empty; 0xff -> no_further_commands : empty;
default -> message : SMB_Message(header, offset, command, is_orig); default -> message : SMB_Message(header, offset, command, is_orig);
}; };
type SMB_Message_Request(header: SMB_Header, offset: uint16, command: uint8, is_orig: bool) = case command of { type SMB_Message_Request(header: SMB_Header, offset: uint16, command: uint8, is_orig: bool) = case command of {