[oe] [PATCH] proftpd: fix mod_tls build issue

Catalin Enache catalin.enache at windriver.com
Wed May 11 13:45:33 UTC 2016


Backported upstream commit:
https://github.com/proftpd/proftpd/commit/253e6ef6a4fde5545111f7c439a9692afecc597b

Signed-off-by: Catalin Enache <catalin.enache at windriver.com>
---
 .../proftpd/files/Fix-build-errors.patch           | 64 ++++++++++++++++++++++
 .../recipes-daemons/proftpd/proftpd_1.3.5a.bb      |  1 +
 2 files changed, 65 insertions(+)
 create mode 100644 meta-networking/recipes-daemons/proftpd/files/Fix-build-errors.patch

diff --git a/meta-networking/recipes-daemons/proftpd/files/Fix-build-errors.patch b/meta-networking/recipes-daemons/proftpd/files/Fix-build-errors.patch
new file mode 100644
index 0000000..3b98560
--- /dev/null
+++ b/meta-networking/recipes-daemons/proftpd/files/Fix-build-errors.patch
@@ -0,0 +1,64 @@
+From 253e6ef6a4fde5545111f7c439a9692afecc597b Mon Sep 17 00:00:00 2001
+From: TJ Saunders <tj at castaglia.org>
+Date: Thu, 10 Mar 2016 15:17:50 -0800
+Subject: [PATCH] Fix build errors; used wrong variable name, and pushed
+ without building.  Shame.
+
+Upstream-Status: Backport
+
+Author: TJ Saunders <tj at castaglia.org>
+Signed-off-by: Catalin Enache <catalin.enache at windriver.com>
+---
+ contrib/mod_tls.c | 10 +++++-----
+ 1 file changed, 5 insertions(+), 5 deletions(-)
+
+diff --git a/contrib/mod_tls.c b/contrib/mod_tls.c
+index c557454..ecd9f56 100644
+--- a/contrib/mod_tls.c
++++ b/contrib/mod_tls.c
+@@ -2423,7 +2423,7 @@ static int tls_ctrl_renegotiate_cb(CALLBACK_FRAME) {
+ }
+ #endif
+ 
+-static DH *tls_dh_cb(SSL *ssl, int is_export, int keylength) {
++static DH *tls_dh_cb(SSL *ssl, int is_export, int keylen) {
+   DH *dh = NULL;
+   EVP_PKEY *pkey;
+   int pkeylen = 0, use_pkeylen = FALSE;
+@@ -2597,7 +2597,7 @@ static DH *tls_dh_cb(SSL *ssl, int is_export, int keylength) {
+ }
+ 
+ #ifdef PR_USE_OPENSSL_ECC
+-static EC_KEY *tls_ecdh_cb(SSL *ssl, int is_export, int keylength) {
++static EC_KEY *tls_ecdh_cb(SSL *ssl, int is_export, int keylen) {
+   static EC_KEY *ecdh = NULL;
+   static int init = 0;
+ 
+@@ -5064,7 +5064,7 @@ static ssize_t tls_read(SSL *ssl, void *buf, size_t len) {
+   return count;
+ }
+ 
+-static RSA *tls_rsa_cb(SSL *ssl, int is_export, int keylength) {
++static RSA *tls_rsa_cb(SSL *ssl, int is_export, int keylen) {
+   BIGNUM *e = NULL;
+ 
+   if (tls_tmp_rsa) {
+@@ -5082,13 +5082,13 @@ static RSA *tls_rsa_cb(SSL *ssl, int is_export, int keylength) {
+     return NULL;
+   }
+ 
+-  if (RSA_generate_key_ex(tls_tmp_rsa, keylength, e, NULL) != 1) {
++  if (RSA_generate_key_ex(tls_tmp_rsa, keylen, e, NULL) != 1) {
+     BN_free(e);
+     return NULL;
+   }
+ 
+ #else
+-  tls_tmp_rsa = RSA_generate_key(keylength, RSA_F4, NULL, NULL);
++  tls_tmp_rsa = RSA_generate_key(keylen, RSA_F4, NULL, NULL);
+ #endif /* OpenSSL version 0.9.8 and later */
+ 
+   if (e != NULL) {
+-- 
+2.7.4
+
diff --git a/meta-networking/recipes-daemons/proftpd/proftpd_1.3.5a.bb b/meta-networking/recipes-daemons/proftpd/proftpd_1.3.5a.bb
index cdf71e7..7b8a102 100644
--- a/meta-networking/recipes-daemons/proftpd/proftpd_1.3.5a.bb
+++ b/meta-networking/recipes-daemons/proftpd/proftpd_1.3.5a.bb
@@ -13,6 +13,7 @@ SRC_URI = "ftp://ftp.proftpd.org/distrib/source/${BPN}-${PV}.tar.gz \
            file://build_fixup.patch \
            file://proftpd.service \
            file://CVE-2016-3125.patch \
+           file://Fix-build-errors.patch \
            "
 
 SRC_URI[md5sum] = "b9d3092411478415b31d435f8e26d173"
-- 
2.7.4




More information about the Openembedded-devel mailing list