Minor logging related fix

This commit is contained in:
Tal Aloni 2017-05-19 23:23:10 +03:00
parent 03cff5e469
commit efce34f5d6

View file

@ -65,7 +65,7 @@ namespace SMBLibrary.Server.SMB2
return new ErrorResponse(request.CommandName, queryStatus);
}
state.LogToServer(Severity.Information, "GetFileSystemInformation on '{0} succeeded. Information class: {1}", share.Name, request.FileSystemInformationClass);
state.LogToServer(Severity.Information, "GetFileSystemInformation on '{0}' succeeded. Information class: {1}", share.Name, request.FileSystemInformationClass);
QueryInfoResponse response = new QueryInfoResponse();
response.SetFileSystemInformation(fileSystemInformation);
return response;