From efce34f5d6117bddfe60f000bf874fc14dbbd880 Mon Sep 17 00:00:00 2001 From: Tal Aloni Date: Fri, 19 May 2017 23:23:10 +0300 Subject: [PATCH] Minor logging related fix --- SMBLibrary/Server/SMB2/QueryInfoHelper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SMBLibrary/Server/SMB2/QueryInfoHelper.cs b/SMBLibrary/Server/SMB2/QueryInfoHelper.cs index e1ceb78..789b7bf 100644 --- a/SMBLibrary/Server/SMB2/QueryInfoHelper.cs +++ b/SMBLibrary/Server/SMB2/QueryInfoHelper.cs @@ -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;