summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source3/smbd/open.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source3/smbd/open.c b/source3/smbd/open.c
index f03c8216d4..f959f00b10 100644
--- a/source3/smbd/open.c
+++ b/source3/smbd/open.c
@@ -1899,7 +1899,6 @@ static NTSTATUS mkdir_internal(connection_struct *conn,
uint32 file_attributes,
SMB_STRUCT_STAT *psbuf)
{
- int ret= -1;
mode_t mode;
char *parent_dir;
const char *dirname;
@@ -1927,7 +1926,7 @@ static NTSTATUS mkdir_internal(connection_struct *conn,
mode = unix_mode(conn, aDIR, name, parent_dir);
}
- if ((ret=SMB_VFS_MKDIR(conn, name, mode)) != 0) {
+ if (SMB_VFS_MKDIR(conn, name, mode) != 0) {
return map_nt_error_from_unix(errno);
}