From 7a76762c688f4fc7519dbd204b036963c460e093 Mon Sep 17 00:00:00 2001 From: Björn Baumbach Date: Mon, 1 Oct 2012 09:55:28 +0200 Subject: s3: make recursive_rmdir function non-static --- source3/smbd/close.c | 8 ++++---- source3/smbd/proto.h | 3 +++ 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/source3/smbd/close.c b/source3/smbd/close.c index 8bf481dc37..9b988e07c6 100644 --- a/source3/smbd/close.c +++ b/source3/smbd/close.c @@ -853,13 +853,13 @@ static NTSTATUS close_normal_file(struct smb_request *req, files_struct *fsp, return status; } /**************************************************************************** - Static function used by reply_rmdir to delete an entire directory + Function used by reply_rmdir to delete an entire directory tree recursively. Return True on ok, False on fail. ****************************************************************************/ -static bool recursive_rmdir(TALLOC_CTX *ctx, - connection_struct *conn, - struct smb_filename *smb_dname) +bool recursive_rmdir(TALLOC_CTX *ctx, + connection_struct *conn, + struct smb_filename *smb_dname) { const char *dname = NULL; char *talloced = NULL; diff --git a/source3/smbd/proto.h b/source3/smbd/proto.h index a1cef16139..143da491e0 100644 --- a/source3/smbd/proto.h +++ b/source3/smbd/proto.h @@ -139,6 +139,9 @@ void msg_close_file(struct messaging_context *msg_ctx, struct server_id server_id, DATA_BLOB *data); NTSTATUS delete_all_streams(connection_struct *conn, const char *fname); +bool recursive_rmdir(TALLOC_CTX *ctx, + connection_struct *conn, + struct smb_filename *smb_dname); /* The following definitions come from smbd/conn.c */ -- cgit