diff options
author | cvs2svn <admin@example.com> | 2014-04-15 18:01:19 +0000 |
---|---|---|
committer | cvs2svn <admin@example.com> | 2014-04-15 18:01:19 +0000 |
commit | 4b19b8991c2eb7c783fd93feac5ba804bf2a7221 (patch) | |
tree | 523a79fb780e63096ecf79af2283834ab6750ca4 /src/lib/libcrypto/util/extract-section.pl | |
parent | f385533fd495dad9242f2eded4a9017f658ee678 (diff) | |
download | openbsd-openssl_1_0_1g.tar.gz openbsd-openssl_1_0_1g.tar.bz2 openbsd-openssl_1_0_1g.zip |
This commit was manufactured by cvs2git to create tag 'openssl_1_0_1g'.openssl_1_0_1g
Diffstat (limited to '')
-rw-r--r-- | src/lib/libcrypto/util/extract-section.pl | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/lib/libcrypto/util/extract-section.pl b/src/lib/libcrypto/util/extract-section.pl deleted file mode 100644 index 7a0ba4f69a..0000000000 --- a/src/lib/libcrypto/util/extract-section.pl +++ /dev/null | |||
@@ -1,12 +0,0 @@ | |||
1 | #!/usr/bin/perl | ||
2 | |||
3 | while(<STDIN>) { | ||
4 | if (/=for\s+comment\s+openssl_manual_section:(\S+)/) | ||
5 | { | ||
6 | print "$1\n"; | ||
7 | exit 0; | ||
8 | } | ||
9 | } | ||
10 | |||
11 | print "$ARGV[0]\n"; | ||
12 | |||