diff options
author | Michael Adam <obnox@samba.org> | 2011-08-17 10:19:58 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2011-08-25 23:55:06 +0200 |
commit | 316834cf42c352aa8a99f463f35e812fa4f6e397 (patch) | |
tree | 73150a2de6a28a773d918f36e9380fbecfeda51d | |
parent | 1e09f12d1f755ab4eeb76c51c7b52a44c78ed477 (diff) | |
download | samba-316834cf42c352aa8a99f463f35e812fa4f6e397.tar.gz samba-316834cf42c352aa8a99f463f35e812fa4f6e397.tar.bz2 samba-316834cf42c352aa8a99f463f35e812fa4f6e397.zip |
s3:smbd: remove an unused variable in dptr_create()
-rw-r--r-- | source3/smbd/dir.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/source3/smbd/dir.c b/source3/smbd/dir.c index e7c17de1f6..cc74886810 100644 --- a/source3/smbd/dir.c +++ b/source3/smbd/dir.c @@ -427,7 +427,6 @@ NTSTATUS dptr_create(connection_struct *conn, files_struct *fsp, struct smbd_server_connection *sconn = conn->sconn; struct dptr_struct *dptr = NULL; struct smb_Dir *dir_hnd; - NTSTATUS status; if (fsp && fsp->is_directory && fsp->fh->fd != -1) { path = fsp->fsp_name->base_name; |