mirror of
https://github.com/TalAloni/SMBLibrary.git
synced 2025-07-21 16:55: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:
|
case FileInformationClass.FileAlternateNameInformation:
|
||||||
{
|
{
|
||||||
|
// If there is no alternate name Windows will return STATUS_OBJECT_NAME_NOT_FOUND
|
||||||
result = null;
|
result = null;
|
||||||
return NTStatus.STATUS_NOT_IMPLEMENTED;
|
return NTStatus.STATUS_OBJECT_NAME_NOT_FOUND;
|
||||||
}
|
}
|
||||||
case FileInformationClass.FileStreamInformation:
|
case FileInformationClass.FileStreamInformation:
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue