mirror of
https://github.com/TalAloni/SMBLibrary.git
synced 2025-07-19 15:45:54 +02:00
NTFileSystemAdapter: When querying FileAlternateNameInformation return STATUS_OBJECT_NAME_NOT_FOUND
This commit is contained in:
parent
5b95ab894d
commit
41474b87ac
1 changed files with 2 additions and 1 deletions
|
@ -116,8 +116,9 @@ namespace SMBLibrary
|
|||
}
|
||||
case FileInformationClass.FileAlternateNameInformation:
|
||||
{
|
||||
// If there is no alternate name Windows will return STATUS_OBJECT_NAME_NOT_FOUND
|
||||
result = null;
|
||||
return NTStatus.STATUS_NOT_IMPLEMENTED;
|
||||
return NTStatus.STATUS_OBJECT_NAME_NOT_FOUND;
|
||||
}
|
||||
case FileInformationClass.FileStreamInformation:
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue