From: Volker Lendecke Date: Mon, 9 Nov 2020 18:48:21 +0000 (+0100) Subject: pylibsmb: Merge remove_dir() into its only caller X-Git-Tag: samba-4.14.0rc1~616 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d33cec8d4487129cc29398fb00e1d81ae8ce7fb9;p=thirdparty%2Fsamba.git pylibsmb: Merge remove_dir() into its only caller Now that delete_tree is in python code, align py_smb_rmdir() with the other functions. Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- diff --git a/source3/libsmb/pylibsmb.c b/source3/libsmb/pylibsmb.c index 28a21b535d5..3c59ef5ba50 100644 --- a/source3/libsmb/pylibsmb.c +++ b/source3/libsmb/pylibsmb.c @@ -1260,34 +1260,22 @@ static PyObject *py_smb_unlink(struct py_cli_state *self, PyObject *args) Py_RETURN_NONE; } -/* - * Delete an empty directory - */ -static NTSTATUS remove_dir(struct py_cli_state *self, const char *dirname) -{ - NTSTATUS status; - struct tevent_req *req = NULL; - - req = cli_rmdir_send(NULL, self->ev, self->cli, dirname); - if (!py_tevent_req_wait_exc(self, req)) { - return NT_STATUS_INTERNAL_ERROR; - } - status = cli_rmdir_recv(req); - TALLOC_FREE(req); - - return status; -} - static PyObject *py_smb_rmdir(struct py_cli_state *self, PyObject *args) { NTSTATUS status; + struct tevent_req *req = NULL; const char *dirname = NULL; if (!PyArg_ParseTuple(args, "s:rmdir", &dirname)) { return NULL; } - status = remove_dir(self, dirname); + req = cli_rmdir_send(NULL, self->ev, self->cli, dirname); + if (!py_tevent_req_wait_exc(self, req)) { + return NULL; + } + status = cli_rmdir_recv(req); + TALLOC_FREE(req); PyErr_NTSTATUS_IS_ERR_RAISE(status); Py_RETURN_NONE;