From 86666ac6dd925af6d7365d11cc1f3d7cbd81ab84 Mon Sep 17 00:00:00 2001 From: radzio Date: Fri, 13 Jun 2003 22:22:31 +0000 Subject: [PATCH] - updated (fix bug no. 676) Changed files: perl-Net-SSLeay-paths.patch -> 1.2 --- perl-Net-SSLeay-paths.patch | 88 +++++++++++++++++++++++++++++++++---- 1 file changed, 79 insertions(+), 9 deletions(-) diff --git a/perl-Net-SSLeay-paths.patch b/perl-Net-SSLeay-paths.patch index f143718..60d31b9 100644 --- a/perl-Net-SSLeay-paths.patch +++ b/perl-Net-SSLeay-paths.patch @@ -1,32 +1,102 @@ ---- examples.path/bulk.pl Tue Jan 5 02:13:32 1999 -+++ examples/bulk.pl Thu Feb 17 20:52:34 2000 +diff -Naur Net_SSLeay.pm-1.22.orig/SSLeay.pm Net_SSLeay.pm-1.22/SSLeay.pm +--- Net_SSLeay.pm-1.22.orig/SSLeay.pm Sat Jun 14 00:04:55 2003 ++++ Net_SSLeay.pm-1.22/SSLeay.pm Sat Jun 14 00:07:31 2003 +@@ -1016,7 +1016,7 @@ + + Following is a simple SSLeay client (with too little error checking :-( + +- #!/usr/local/bin/perl ++ #!/usr/bin/perl + use Socket; + use Net::SSLeay qw(die_now die_if_ssl_error) ; + Net::SSLeay::load_error_strings(); +@@ -1057,7 +1057,7 @@ + + Following is a simple SSLeay echo server (non forking): + +- #!/usr/local/bin/perl -w ++ #!/usr/bin/perl -w + use Socket; + use Net::SSLeay qw(die_now die_if_ssl_error); + Net::SSLeay::load_error_strings(); +@@ -1120,7 +1120,7 @@ + it had better be without any encryption or else it will not know where + to ask for the password. Note how STDIN and STDOUT are wired to SSL. + +- #!/usr/local/bin/perl ++ #!/usr/bin/perl + # /etc/inetd.conf + # ssltst stream tcp nowait root /path/to/server.pl server.pl + # /etc/services +diff -Naur Net_SSLeay.pm-1.22.orig/examples/bio.pl Net_SSLeay.pm-1.22/examples/bio.pl +--- Net_SSLeay.pm-1.22.orig/examples/bio.pl Sat Jun 14 00:04:55 2003 ++++ Net_SSLeay.pm-1.22/examples/bio.pl Sat Jun 14 00:11:24 2003 +@@ -1,4 +1,4 @@ +-#!/usr/local/bin/perl -w ++#!/usr/bin/perl -w + # bio.pl mikem@open.com.au + # + # Test and demonstrate BIO interface +diff -Naur Net_SSLeay.pm-1.22.orig/examples/bulk.pl Net_SSLeay.pm-1.22/examples/bulk.pl +--- Net_SSLeay.pm-1.22.orig/examples/bulk.pl Sat Jun 14 00:04:55 2003 ++++ Net_SSLeay.pm-1.22/examples/bulk.pl Sat Jun 14 00:05:03 2003 @@ -1,4 +1,4 @@ -#!/usr/local/bin/perl -w +#!/usr/bin/perl # bulk.pl - 8.6.1998, Sampo Kellomaki # Send tons of stuff over SSL (just for testing). # There's also an example about using the call back. ---- examples.path/callback.pl Sat Jul 31 09:49:09 1999 -+++ examples/callback.pl Thu Feb 17 20:52:34 2000 +diff -Naur Net_SSLeay.pm-1.22.orig/examples/callback.pl Net_SSLeay.pm-1.22/examples/callback.pl +--- Net_SSLeay.pm-1.22.orig/examples/callback.pl Sat Jun 14 00:04:55 2003 ++++ Net_SSLeay.pm-1.22/examples/callback.pl Sat Jun 14 00:05:03 2003 @@ -1,4 +1,4 @@ -#!/usr/local/bin/perl -w +#!/usr/bin/perl # callback.pl - 8.6.1998, Sampo Kellomaki # 31.7.1999, fixed callback args, --Sampo + # 7.4.2001, adapted to 0.9.6a and numerous bug reports --Sampo +diff -Naur Net_SSLeay.pm-1.22.orig/examples/cli-cert.pl Net_SSLeay.pm-1.22/examples/cli-cert.pl +--- Net_SSLeay.pm-1.22.orig/examples/cli-cert.pl Sat Jun 14 00:04:55 2003 ++++ Net_SSLeay.pm-1.22/examples/cli-cert.pl Sat Jun 14 00:11:24 2003 +@@ -1,4 +1,4 @@ +-#!/usr/local/bin/perl ++#!/usr/bin/perl + # cli-cert.pl + # 8.6.1998, originally written as stdio_bulk.pl Sampo Kellomaki + # 8.12.2001, adapted to test client certificates +diff -Naur Net_SSLeay.pm-1.22.orig/examples/ephemeral.pl Net_SSLeay.pm-1.22/examples/ephemeral.pl +--- Net_SSLeay.pm-1.22.orig/examples/ephemeral.pl Sat Jun 14 00:04:55 2003 ++++ Net_SSLeay.pm-1.22/examples/ephemeral.pl Sat Jun 14 00:11:24 2003 +@@ -1,4 +1,4 @@ +-#!/usr/local/bin/perl -w ++#!/usr/bin/perl -w + # ephemeral.pl mikem@open.com.au # ---- examples.path/minicli.pl Tue Jan 5 02:13:32 1999 -+++ examples/minicli.pl Thu Feb 17 20:52:34 2000 + # Test and demonstrate setting ephemeral RSA key +diff -Naur Net_SSLeay.pm-1.22.orig/examples/minicli.pl Net_SSLeay.pm-1.22/examples/minicli.pl +--- Net_SSLeay.pm-1.22.orig/examples/minicli.pl Sat Jun 14 00:04:55 2003 ++++ Net_SSLeay.pm-1.22/examples/minicli.pl Sat Jun 14 00:05:03 2003 @@ -1,4 +1,4 @@ -#!/usr/local/bin/perl +#!/usr/bin/perl # minicli.pl - Sampo Kellomaki use Socket; ---- examples.path/stdio_bulk.pl Tue Jan 5 02:13:33 1999 -+++ examples/stdio_bulk.pl Thu Feb 17 20:52:35 2000 +diff -Naur Net_SSLeay.pm-1.22.orig/examples/passwd-cb.pl Net_SSLeay.pm-1.22/examples/passwd-cb.pl +--- Net_SSLeay.pm-1.22.orig/examples/passwd-cb.pl Sat Jun 14 00:04:55 2003 ++++ Net_SSLeay.pm-1.22/examples/passwd-cb.pl Sat Jun 14 00:11:24 2003 +@@ -1,4 +1,4 @@ +-#!/usr/local/bin/perl ++#!/usr/bin/perl + # passwd-cb.pl + # + # Check using password callbacks to decrypt private keys +diff -Naur Net_SSLeay.pm-1.22.orig/examples/stdio_bulk.pl Net_SSLeay.pm-1.22/examples/stdio_bulk.pl +--- Net_SSLeay.pm-1.22.orig/examples/stdio_bulk.pl Sat Jun 14 00:04:55 2003 ++++ Net_SSLeay.pm-1.22/examples/stdio_bulk.pl Sat Jun 14 00:05:03 2003 @@ -1,4 +1,4 @@ -#!/usr/local/bin/perl +#!/usr/bin/perl # stdio_bulk.pl - 8.6.1998, Sampo Kellomaki # Send tons of stuff over SSL connected by STDIO pipe. - # This also demonstrates how you can communicate via arbitrary strean, not + # This also demonstrates how you can communicate via arbitrary stream, not -- 2.44.0