summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2012-01-31 17:24:49 +0100
committerVolker Lendecke <vlendec@samba.org>2012-01-31 18:38:15 +0100
commit549a31963e993a15b6155a046dd4ecea9b05eed7 (patch)
tree7152d29afb5fc29a91a3fc84552a9a9d02c4514e
parent312228d0c89f83c9defaba268a2bb62365b0ce1b (diff)
downloadsamba-549a31963e993a15b6155a046dd4ecea9b05eed7.tar.gz
samba-549a31963e993a15b6155a046dd4ecea9b05eed7.tar.bz2
samba-549a31963e993a15b6155a046dd4ecea9b05eed7.zip
s3: Re-indent an && sequence for better understanding
-rw-r--r--source3/smbd/open.c4
1 files 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;