diff options
| author | djm <> | 2008-09-06 12:15:53 +0000 |
|---|---|---|
| committer | djm <> | 2008-09-06 12:15:53 +0000 |
| commit | 89b182c5db7ea802edfc3ee734b4899b43e13e09 (patch) | |
| tree | 88747ac13b4a3c36ffc2fe9901e1e90efc583ced /src/lib/libcrypto/util/extract-section.pl | |
| parent | 2264137440a13fb11f05127cb03f7239f024ab28 (diff) | |
| parent | f69b11f62c3e6c9d4db22529933cf93b6301f7b1 (diff) | |
| download | openbsd-89b182c5db7ea802edfc3ee734b4899b43e13e09.tar.gz openbsd-89b182c5db7ea802edfc3ee734b4899b43e13e09.tar.bz2 openbsd-89b182c5db7ea802edfc3ee734b4899b43e13e09.zip | |
This commit was generated by cvs2git to track changes on a CVS vendor
branch.
Diffstat (limited to '')
| -rw-r--r-- | src/lib/libcrypto/util/extract-section.pl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/lib/libcrypto/util/extract-section.pl b/src/lib/libcrypto/util/extract-section.pl new file mode 100644 index 0000000000..7a0ba4f69a --- /dev/null +++ b/src/lib/libcrypto/util/extract-section.pl | |||
| @@ -0,0 +1,12 @@ | |||
| 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 | |||
