unifdef -U LINT
authorjsing <jsing@openbsd.org>
Thu, 24 Apr 2014 12:39:02 +0000 (12:39 +0000)
committerjsing <jsing@openbsd.org>
Thu, 24 Apr 2014 12:39:02 +0000 (12:39 +0000)
lib/libssl/src/apps/dhparam.c
lib/libssl/src/apps/dsaparam.c
lib/libssl/src/apps/gendh.c
lib/libssl/src/apps/genpkey.c
lib/libssl/src/apps/genrsa.c
lib/libssl/src/apps/req.c

index 45bfd18..b09f641 100644 (file)
@@ -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;
 }
 
index 21f40e5..0db04ed 100644 (file)
@@ -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;
index f93e044..07e8b33 100644 (file)
@@ -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
index 242da0e..8d2f6d6 100644 (file)
@@ -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;
 }
index 79c228f..68e939c 100644 (file)
@@ -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
index 1ff0b63..5cfbc44 100644 (file)
@@ -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;
 }