From b202b63ca37b52ef190640bf51402dc65b0ed2b7 Mon Sep 17 00:00:00 2001 From: jsing Date: Thu, 24 Apr 2014 12:39:02 +0000 Subject: [PATCH] unifdef -U LINT --- lib/libssl/src/apps/dhparam.c | 3 --- lib/libssl/src/apps/dsaparam.c | 3 --- lib/libssl/src/apps/gendh.c | 3 --- lib/libssl/src/apps/genpkey.c | 3 --- lib/libssl/src/apps/genrsa.c | 3 --- lib/libssl/src/apps/req.c | 3 --- 6 files changed, 18 deletions(-) diff --git a/lib/libssl/src/apps/dhparam.c b/lib/libssl/src/apps/dhparam.c index 45bfd18f683..b09f6418e38 100644 --- a/lib/libssl/src/apps/dhparam.c +++ b/lib/libssl/src/apps/dhparam.c @@ -495,9 +495,6 @@ dh_cb(int p, int n, BN_GENCB * cb) c = '\n'; BIO_write(cb->arg, &c, 1); (void) BIO_flush(cb->arg); -#ifdef LINT - p = n; -#endif return 1; } diff --git a/lib/libssl/src/apps/dsaparam.c b/lib/libssl/src/apps/dsaparam.c index 21f40e5c153..0db04ed6f41 100644 --- a/lib/libssl/src/apps/dsaparam.c +++ b/lib/libssl/src/apps/dsaparam.c @@ -416,9 +416,6 @@ dsa_cb(int p, int n, BN_GENCB * cb) c = '\n'; BIO_write(cb->arg, &c, 1); (void) BIO_flush(cb->arg); -#ifdef LINT - p = n; -#endif #ifdef GENCB_TEST if (stop_keygen_flag) return 0; diff --git a/lib/libssl/src/apps/gendh.c b/lib/libssl/src/apps/gendh.c index f93e044a6dd..07e8b333904 100644 --- a/lib/libssl/src/apps/gendh.c +++ b/lib/libssl/src/apps/gendh.c @@ -211,9 +211,6 @@ dh_cb(int p, int n, BN_GENCB * cb) c = '\n'; BIO_write(cb->arg, &c, 1); (void) BIO_flush(cb->arg); -#ifdef LINT - p = n; -#endif return 1; } #endif diff --git a/lib/libssl/src/apps/genpkey.c b/lib/libssl/src/apps/genpkey.c index 242da0e0aad..8d2f6d6ae81 100644 --- a/lib/libssl/src/apps/genpkey.c +++ b/lib/libssl/src/apps/genpkey.c @@ -382,8 +382,5 @@ genpkey_cb(EVP_PKEY_CTX * ctx) c = '\n'; BIO_write(b, &c, 1); (void) BIO_flush(b); -#ifdef LINT - p = n; -#endif return 1; } diff --git a/lib/libssl/src/apps/genrsa.c b/lib/libssl/src/apps/genrsa.c index 79c228f2d39..68e939ca99a 100644 --- a/lib/libssl/src/apps/genrsa.c +++ b/lib/libssl/src/apps/genrsa.c @@ -303,9 +303,6 @@ genrsa_cb(int p, int n, BN_GENCB * cb) c = '\n'; BIO_write(cb->arg, &c, 1); (void) BIO_flush(cb->arg); -#ifdef LINT - p = n; -#endif return 1; } #endif diff --git a/lib/libssl/src/apps/req.c b/lib/libssl/src/apps/req.c index 1ff0b63b8ca..5cfbc442ea8 100644 --- a/lib/libssl/src/apps/req.c +++ b/lib/libssl/src/apps/req.c @@ -1538,9 +1538,6 @@ genpkey_cb(EVP_PKEY_CTX * ctx) c = '\n'; BIO_write(b, &c, 1); (void) BIO_flush(b); -#ifdef LINT - p = n; -#endif return 1; } -- 2.20.1