Corrected typo

This commit is contained in:
Tal Aloni 2017-07-11 16:14:51 +03:00
parent 42f6e23107
commit fb06e4df46
3 changed files with 3 additions and 3 deletions

View file

@ -254,7 +254,7 @@ namespace SMBLibrary.SMB1
}
else
{
throw new InvalidRequestException();;
throw new InvalidRequestException();
}
}
case CommandName.SMB_COM_SESSION_SETUP_ANDX:

View file

@ -99,7 +99,7 @@ namespace SMBLibrary.SMB1
{
if (!SMB1Header.IsValidSMB1Header(buffer))
{
throw new InvalidRequestException("Invalid SMB header signature");;
throw new InvalidRequestException("Invalid SMB header signature");
}
return new SMB1Message(buffer);
}

View file

@ -49,7 +49,7 @@ namespace SMBLibrary.SMB1
case FindInformationLevel.SMB_FIND_FILE_BOTH_DIRECTORY_INFO:
return new FindFileBothDirectoryInfo(buffer, ref offset, isUnicode);
default:
throw new UnsupportedInformationLevelException();;
throw new UnsupportedInformationLevelException();
}
}
}