From 549a31963e993a15b6155a046dd4ecea9b05eed7 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 31 Jan 2012 17:24:49 +0100 Subject: s3: Re-indent an && sequence for better understanding --- source3/smbd/open.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/smbd/open.c b/source3/smbd/open.c index 538805920f..1c15ca4061 100644 --- a/source3/smbd/open.c +++ b/source3/smbd/open.c @@ -2691,8 +2691,8 @@ static NTSTATUS open_directory(connection_struct *conn, (unsigned int)file_attributes)); if (!(file_attributes & FILE_FLAG_POSIX_SEMANTICS) && - (conn->fs_capabilities & FILE_NAMED_STREAMS) && - is_ntfs_stream_smb_fname(smb_dname)) { + (conn->fs_capabilities & FILE_NAMED_STREAMS) && + is_ntfs_stream_smb_fname(smb_dname)) { DEBUG(2, ("open_directory: %s is a stream name!\n", smb_fname_str_dbg(smb_dname))); return NT_STATUS_NOT_A_DIRECTORY; -- cgit