package/rdesktop: fix build error

Fixes:
https://autobuild.buildroot.net/results/8ad/8ad5d33f726fe57910a70df7c8f40a9568c2dfa7/

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
(cherry picked from commit 7bd818a067)
Signed-off-by: Thomas Perale <thomas.perale@mind.be>
This commit is contained in:
Bernd Kuhls
2025-12-06 09:58:17 +01:00
committed by Thomas Perale
parent 8a405b4e2e
commit 83a77ac556

View File

@@ -0,0 +1,29 @@
From 53ba87dc174175e98332e22355ad8662c02880d6 Mon Sep 17 00:00:00 2001
From: Markus Beth <markus.beth@zkrd.de>
Date: Mon, 2 Dec 2019 11:22:13 +0100
Subject: [PATCH] use correct modulus and exponent in rdssl_rkey_get_exp_mod
Upstream: https://github.com/rdesktop/rdesktop/commit/53ba87dc174175e98332e22355ad8662c02880d6
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
---
ssl.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ssl.c b/ssl.c
index 930c7f94..0681a890 100644
--- a/ssl.c
+++ b/ssl.c
@@ -307,10 +307,10 @@ rdssl_rkey_get_exp_mod(RDSSL_RKEY * rkey, uint8 * exponent, uint32 max_exp_len,
{
size_t outlen;
- outlen = (mpz_sizeinbase(modulus, 2) + 7) / 8;
+ outlen = (mpz_sizeinbase(rkey->n, 2) + 7) / 8;
if (outlen > max_mod_len)
return 1;
- outlen = (mpz_sizeinbase(exponent, 2) + 7) / 8;
+ outlen = (mpz_sizeinbase(rkey->e, 2) + 7) / 8;
if (outlen > max_exp_len)
return 1;