summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2015-09-16 12:42:46 -0700
committerKarolin Seeger <kseeger@samba.org>2015-10-05 09:41:29 +0200
commit134b9de72236778fa08d4fe051fde167c792ed09 (patch)
treebf69ebd0745157488d6e24d56351a02811c9464d /source3
parentd7682739ee82a5d5ce98d04e585ee9e8e9ff924b (diff)
downloadsamba-134b9de72236778fa08d4fe051fde167c792ed09.tar.gz
s3: smbd: Remove unused parameter from build_stream_path().
Signed-off-by: Jeremy Allison <jra@samba.org> Reviewed-by: Ralph Boehme <slow@samba.org> (cherry picked from commit 94e7e707783036b57babc73d320d2a3d8c0648d6)
Diffstat (limited to 'source3')
-rw-r--r--source3/smbd/filename.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/source3/smbd/filename.c b/source3/smbd/filename.c
index 6899d2a738e..e2c3fe49f3c 100644
--- a/source3/smbd/filename.c
+++ b/source3/smbd/filename.c
@@ -32,7 +32,6 @@
static NTSTATUS build_stream_path(TALLOC_CTX *mem_ctx,
connection_struct *conn,
- const char *orig_path,
struct smb_filename *smb_fname);
/****************************************************************************
@@ -981,7 +980,7 @@ NTSTATUS unix_convert(TALLOC_CTX *ctx,
smb_fname->stream_name = stream;
/* Check path now that the base_name has been converted. */
- status = build_stream_path(ctx, conn, orig_path, smb_fname);
+ status = build_stream_path(ctx, conn, smb_fname);
if (!NT_STATUS_IS_OK(status)) {
goto fail;
}
@@ -1233,7 +1232,6 @@ int get_real_filename(connection_struct *conn, const char *path,
static NTSTATUS build_stream_path(TALLOC_CTX *mem_ctx,
connection_struct *conn,
- const char *orig_path,
struct smb_filename *smb_fname)
{
NTSTATUS status;