don't exit early if file opened successfully

This commit is contained in:
Kelvin Sherlock 2014-09-08 14:56:02 -04:00
parent 39728fa3cf
commit 37fa05d5d9
1 changed files with 3 additions and 0 deletions

3
smb.c
View File

@ -959,6 +959,9 @@ static int open_and_read(Word ipid, const uint16_t *path)
switch(status)
{
case 0:
break;
case STATUS_OBJECT_NAME_NOT_FOUND:
case STATUS_NO_SUCH_FILE:
fprintf(stderr, "File not found.\n");