From b564b49dfef4f0c2fdb61e9f75da5bec7f8fe6b2 Mon Sep 17 00:00:00 2001 From: AZero13 Date: Tue, 16 Dec 2025 19:24:04 -0500 Subject: [PATCH] Remove unused value rc in sudo_python_module --- plugins/python/sudo_python_module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/python/sudo_python_module.c b/plugins/python/sudo_python_module.c index 749ed1f775..80b8c57d48 100644 --- a/plugins/python/sudo_python_module.c +++ b/plugins/python/sudo_python_module.c @@ -365,7 +365,7 @@ python_sudo_conversation(PyObject *Py_UNUSED(self), PyObject *py_args, PyObject int rc = py_sudo_conv((int)num_msgs, msgs, replies, &callback); if (rc != 0) { PyErr_Format(sudo_exc_ConversationInterrupted, - "%s: conversation was interrupted", __func__, rc); + "%s: conversation was interrupted", __func__); goto cleanup; }