mirror of
https://github.com/TalAloni/SMBLibrary.git
synced 2025-04-29 18:27:48 +02:00
CreateFile: Return STATUS_NO_SUCH_FILE when file not found
PowerPoint 2010 was not able to save when STATUS_OBJECT_PATH_NOT_FOUND was returned
This commit is contained in:
parent
a607700690
commit
ef6551aaca
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ namespace SMBLibrary
|
|||
{
|
||||
if (entry == null)
|
||||
{
|
||||
return NTStatus.STATUS_OBJECT_PATH_NOT_FOUND;
|
||||
return NTStatus.STATUS_NO_SUCH_FILE;
|
||||
}
|
||||
|
||||
fileStatus = FileStatus.FILE_EXISTS;
|
||||
|
|
Loading…
Add table
Reference in a new issue