]> git.pld-linux.org Git - packages/perl-Net-SSLeay.git/blame - perl-Net-SSLeay-paths.patch
- release 6
[packages/perl-Net-SSLeay.git] / perl-Net-SSLeay-paths.patch
CommitLineData
86666ac6 1diff -Naur Net_SSLeay.pm-1.22.orig/SSLeay.pm Net_SSLeay.pm-1.22/SSLeay.pm
2--- Net_SSLeay.pm-1.22.orig/SSLeay.pm Sat Jun 14 00:04:55 2003
3+++ Net_SSLeay.pm-1.22/SSLeay.pm Sat Jun 14 00:07:31 2003
4@@ -1016,7 +1016,7 @@
5
6 Following is a simple SSLeay client (with too little error checking :-(
7
8- #!/usr/local/bin/perl
9+ #!/usr/bin/perl
10 use Socket;
11 use Net::SSLeay qw(die_now die_if_ssl_error) ;
12 Net::SSLeay::load_error_strings();
13@@ -1057,7 +1057,7 @@
14
15 Following is a simple SSLeay echo server (non forking):
16
17- #!/usr/local/bin/perl -w
18+ #!/usr/bin/perl -w
19 use Socket;
20 use Net::SSLeay qw(die_now die_if_ssl_error);
21 Net::SSLeay::load_error_strings();
22@@ -1120,7 +1120,7 @@
23 it had better be without any encryption or else it will not know where
24 to ask for the password. Note how STDIN and STDOUT are wired to SSL.
25
26- #!/usr/local/bin/perl
27+ #!/usr/bin/perl
28 # /etc/inetd.conf
29 # ssltst stream tcp nowait root /path/to/server.pl server.pl
30 # /etc/services
31diff -Naur Net_SSLeay.pm-1.22.orig/examples/bio.pl Net_SSLeay.pm-1.22/examples/bio.pl
32--- Net_SSLeay.pm-1.22.orig/examples/bio.pl Sat Jun 14 00:04:55 2003
33+++ Net_SSLeay.pm-1.22/examples/bio.pl Sat Jun 14 00:11:24 2003
34@@ -1,4 +1,4 @@
35-#!/usr/local/bin/perl -w
36+#!/usr/bin/perl -w
37 # bio.pl mikem@open.com.au
38 #
39 # Test and demonstrate BIO interface
40diff -Naur Net_SSLeay.pm-1.22.orig/examples/bulk.pl Net_SSLeay.pm-1.22/examples/bulk.pl
41--- Net_SSLeay.pm-1.22.orig/examples/bulk.pl Sat Jun 14 00:04:55 2003
42+++ Net_SSLeay.pm-1.22/examples/bulk.pl Sat Jun 14 00:05:03 2003
840d07a5 43@@ -1,4 +1,4 @@
44-#!/usr/local/bin/perl -w
45+#!/usr/bin/perl
46 # bulk.pl - 8.6.1998, Sampo Kellomaki <sampo@iki.fi>
47 # Send tons of stuff over SSL (just for testing).
48 # There's also an example about using the call back.
86666ac6 49diff -Naur Net_SSLeay.pm-1.22.orig/examples/callback.pl Net_SSLeay.pm-1.22/examples/callback.pl
50--- Net_SSLeay.pm-1.22.orig/examples/callback.pl Sat Jun 14 00:04:55 2003
51+++ Net_SSLeay.pm-1.22/examples/callback.pl Sat Jun 14 00:05:03 2003
840d07a5 52@@ -1,4 +1,4 @@
53-#!/usr/local/bin/perl -w
54+#!/usr/bin/perl
55 # callback.pl - 8.6.1998, Sampo Kellomaki <sampo@iki.fi>
56 # 31.7.1999, fixed callback args, --Sampo
86666ac6 57 # 7.4.2001, adapted to 0.9.6a and numerous bug reports --Sampo
58diff -Naur Net_SSLeay.pm-1.22.orig/examples/cli-cert.pl Net_SSLeay.pm-1.22/examples/cli-cert.pl
59--- Net_SSLeay.pm-1.22.orig/examples/cli-cert.pl Sat Jun 14 00:04:55 2003
60+++ Net_SSLeay.pm-1.22/examples/cli-cert.pl Sat Jun 14 00:11:24 2003
61@@ -1,4 +1,4 @@
62-#!/usr/local/bin/perl
63+#!/usr/bin/perl
64 # cli-cert.pl
65 # 8.6.1998, originally written as stdio_bulk.pl Sampo Kellomaki <sampo@iki.fi>
66 # 8.12.2001, adapted to test client certificates
67diff -Naur Net_SSLeay.pm-1.22.orig/examples/ephemeral.pl Net_SSLeay.pm-1.22/examples/ephemeral.pl
68--- Net_SSLeay.pm-1.22.orig/examples/ephemeral.pl Sat Jun 14 00:04:55 2003
69+++ Net_SSLeay.pm-1.22/examples/ephemeral.pl Sat Jun 14 00:11:24 2003
70@@ -1,4 +1,4 @@
71-#!/usr/local/bin/perl -w
72+#!/usr/bin/perl -w
73 # ephemeral.pl mikem@open.com.au
840d07a5 74 #
86666ac6 75 # Test and demonstrate setting ephemeral RSA key
76diff -Naur Net_SSLeay.pm-1.22.orig/examples/minicli.pl Net_SSLeay.pm-1.22/examples/minicli.pl
77--- Net_SSLeay.pm-1.22.orig/examples/minicli.pl Sat Jun 14 00:04:55 2003
78+++ Net_SSLeay.pm-1.22/examples/minicli.pl Sat Jun 14 00:05:03 2003
840d07a5 79@@ -1,4 +1,4 @@
80-#!/usr/local/bin/perl
81+#!/usr/bin/perl
82 # minicli.pl - Sampo Kellomaki <sampo@iki.fi>
83
84 use Socket;
86666ac6 85diff -Naur Net_SSLeay.pm-1.22.orig/examples/passwd-cb.pl Net_SSLeay.pm-1.22/examples/passwd-cb.pl
86--- Net_SSLeay.pm-1.22.orig/examples/passwd-cb.pl Sat Jun 14 00:04:55 2003
87+++ Net_SSLeay.pm-1.22/examples/passwd-cb.pl Sat Jun 14 00:11:24 2003
88@@ -1,4 +1,4 @@
89-#!/usr/local/bin/perl
90+#!/usr/bin/perl
91 # passwd-cb.pl
92 #
93 # Check using password callbacks to decrypt private keys
94diff -Naur Net_SSLeay.pm-1.22.orig/examples/stdio_bulk.pl Net_SSLeay.pm-1.22/examples/stdio_bulk.pl
95--- Net_SSLeay.pm-1.22.orig/examples/stdio_bulk.pl Sat Jun 14 00:04:55 2003
96+++ Net_SSLeay.pm-1.22/examples/stdio_bulk.pl Sat Jun 14 00:05:03 2003
840d07a5 97@@ -1,4 +1,4 @@
98-#!/usr/local/bin/perl
99+#!/usr/bin/perl
100 # stdio_bulk.pl - 8.6.1998, Sampo Kellomaki <sampo@iki.fi>
101 # Send tons of stuff over SSL connected by STDIO pipe.
86666ac6 102 # This also demonstrates how you can communicate via arbitrary stream, not
This page took 0.041377 seconds and 4 git commands to generate.