diff options
author | Rich Salz <rsalz@openssl.org> | 2015-01-24 16:57:19 +0100 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2015-01-24 16:58:38 +0100 |
commit | a2b18e657ea1a932d125154f4e13ab2258796d90 (patch) | |
tree | bdfcb8bbe1d673b3bce209ef289520e11a109464 /apps/crl.c | |
parent | Fix segfault with empty fields as last in the config. (diff) | |
download | openssl-a2b18e657ea1a932d125154f4e13ab2258796d90.tar.xz openssl-a2b18e657ea1a932d125154f4e13ab2258796d90.zip |
ifdef cleanup, part 4a: '#ifdef undef'
This removes all code surrounded by '#ifdef undef'
One case is left: memmove() replaced by open-coded for loop,
in crypto/stack/stack.c That needs further review.
Also removed a couple of instances of /* dead code */ if I saw them
while doing the main removal.
Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'apps/crl.c')
-rw-r--r-- | apps/crl.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/apps/crl.c b/apps/crl.c index c9c3a5f6d1..6819faa5b9 100644 --- a/apps/crl.c +++ b/apps/crl.c @@ -152,15 +152,6 @@ int MAIN(int argc, char **argv) argv++; num = 0; while (argc >= 1) { -#ifdef undef - if (strcmp(*argv, "-p") == 0) { - if (--argc < 1) - goto bad; - if (!args_from_file(++argv, Nargc, Nargv)) { - goto end; - } - */} -#endif if (strcmp(*argv, "-inform") == 0) { if (--argc < 1) goto bad; |