From 34319d6ef2ea6fdd784734986d873b5612318e59 Mon Sep 17 00:00:00 2001 From: Robert Knutsson Date: Tue, 14 Oct 2025 20:05:24 +0200 Subject: [PATCH] c_client.py: _c_request_helper called with incorrect keyword argument Signed-off-by: Robert Knutsson --- src/c_client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/c_client.py b/src/c_client.py index 730393e..866ba06 100644 --- a/src/c_client.py +++ b/src/c_client.py @@ -3187,8 +3187,8 @@ def c_request(self, name): _c_request_helper(self, name, void=False, regular=True, aux=False, reply_fds=has_fds) _c_request_helper(self, name, void=False, regular=False, aux=False, reply_fds=has_fds) if self.c_need_aux: - _c_request_helper(self, name, void=False, regular=True, aux=True, reply_fs=has_fds) - _c_request_helper(self, name, void=False, regular=False, aux=True, reply_fs=has_fds) + _c_request_helper(self, name, void=False, regular=True, aux=True, reply_fds=has_fds) + _c_request_helper(self, name, void=False, regular=False, aux=True, reply_fds=has_fds) # Reply accessors _c_accessors(self.reply, name + ('reply',), name) _c_reply(self, name)