The branch, v3-2-ctdb has been updated via 967c0444973554e742c2c3b919a45c16aa03270d (commit) from 6ce95ce265202fa94b71af1ec41a01f5554bee36 (commit)
http://gitweb.samba.org/?p=obnox/samba-ctdb.git;a=shortlog;h=v3-2-ctdb - Log ----------------------------------------------------------------- commit 967c0444973554e742c2c3b919a45c16aa03270d Author: Volker Lendecke <v...@samba.org> Date: Thu Jul 2 14:01:57 2009 +0200 For a non-existing stream, we have to return NAME_NOT_FOUND Signed-off-by: Michael Adam <ob...@samba.org> ----------------------------------------------------------------------- Summary of changes: source/smbd/open.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) Changeset truncated at 500 lines: diff --git a/source/smbd/open.c b/source/smbd/open.c index 535abcc..28aaa16 100644 --- a/source/smbd/open.c +++ b/source/smbd/open.c @@ -3200,7 +3200,7 @@ NTSTATUS create_file(connection_struct *conn, } if (!(conn->fs_capabilities & FILE_NAMED_STREAMS)) { - status = NT_STATUS_OBJECT_PATH_NOT_FOUND; + status = NT_STATUS_OBJECT_NAME_NOT_FOUND; goto fail; } } -- SAMBA-CTDB repository