From 7e560bd802c2869d4280f15bde100bbda944b70b Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Fri, 3 Jul 2009 22:36:11 +0200 Subject: For non-existent streams we have to return OBJECT_NAME_NOT_FOUND See the STREAMERROR s3 torture test. Jeremy, Tim, please check! --- source3/smbd/open.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/smbd') diff --git a/source3/smbd/open.c b/source3/smbd/open.c index 21e5804123..df31365675 100644 --- a/source3/smbd/open.c +++ b/source3/smbd/open.c @@ -3487,7 +3487,7 @@ NTSTATUS create_file_default(connection_struct *conn, TALLOC_FREE(fname); if (!(conn->fs_capabilities & FILE_NAMED_STREAMS)) { - status = NT_STATUS_OBJECT_PATH_NOT_FOUND; + status = NT_STATUS_OBJECT_NAME_NOT_FOUND; goto fail; } } -- cgit