Skip to content

Commit 5bccf07

Browse files
committed
Fix references to the license text
Update the references to the file "LICENCE" with "COPYING". The file LICENCE doesn't exist in ruby/ruby nor ruby/openssl. This has been always the case since OpenSSL for Ruby 2 was merged to the ruby tree as a standard library in 2003. In OpenSSL for Ruby 2's CVS repository[1], the LICENCE file contained an old version of the Ruby License, identical to the COPYING file that was in Ruby's tree at that time (r4128[2]). [1] http://cvs.savannah.gnu.org/viewvc/rubypki/ossl2/LICENCE?revision=1.1.1.1&view=markup [2] https://github.com/ruby/ruby/blob/231247c010acba191b78ed2d1310c935e63ad919/COPYING
1 parent 00ad542 commit 5bccf07

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+59
-59
lines changed

ext/openssl/extconf.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
= Licence
1010
This program is licensed under the same licence as Ruby.
11-
(See the file 'LICENCE'.)
11+
(See the file 'COPYING'.)
1212
=end
1313

1414
require "mkmf"

ext/openssl/openssl_missing.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66
/*
77
* This program is licensed under the same licence as Ruby.
8-
* (See the file 'LICENCE'.)
8+
* (See the file 'COPYING'.)
99
*/
1010
#include RUBY_EXTCONF_H
1111

ext/openssl/openssl_missing.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66
/*
77
* This program is licensed under the same licence as Ruby.
8-
* (See the file 'LICENCE'.)
8+
* (See the file 'COPYING'.)
99
*/
1010
#if !defined(_OSSL_OPENSSL_MISSING_H_)
1111
#define _OSSL_OPENSSL_MISSING_H_

ext/openssl/ossl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66
/*
77
* This program is licensed under the same licence as Ruby.
8-
* (See the file 'LICENCE'.)
8+
* (See the file 'COPYING'.)
99
*/
1010
#include "ossl.h"
1111
#include <stdarg.h> /* for ossl_raise */

ext/openssl/ossl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66
/*
77
* This program is licensed under the same licence as Ruby.
8-
* (See the file 'LICENCE'.)
8+
* (See the file 'COPYING'.)
99
*/
1010
#if !defined(_OSSL_H_)
1111
#define _OSSL_H_

ext/openssl/ossl_asn1.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66
/*
77
* This program is licensed under the same licence as Ruby.
8-
* (See the file 'LICENCE'.)
8+
* (See the file 'COPYING'.)
99
*/
1010
#include "ossl.h"
1111

ext/openssl/ossl_asn1.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66
/*
77
* This program is licensed under the same licence as Ruby.
8-
* (See the file 'LICENCE'.)
8+
* (See the file 'COPYING'.)
99
*/
1010
#if !defined(_OSSL_ASN1_H_)
1111
#define _OSSL_ASN1_H_

ext/openssl/ossl_bio.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66
/*
77
* This program is licensed under the same licence as Ruby.
8-
* (See the file 'LICENCE'.)
8+
* (See the file 'COPYING'.)
99
*/
1010
#include "ossl.h"
1111

ext/openssl/ossl_bio.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66
/*
77
* This program is licensed under the same licence as Ruby.
8-
* (See the file 'LICENCE'.)
8+
* (See the file 'COPYING'.)
99
*/
1010
#if !defined(_OSSL_BIO_H_)
1111
#define _OSSL_BIO_H_

ext/openssl/ossl_bn.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66
/*
77
* This program is licensed under the same licence as Ruby.
8-
* (See the file 'LICENCE'.)
8+
* (See the file 'COPYING'.)
99
*/
1010
/* modified by Michal Rokos <[email protected]> */
1111
#include "ossl.h"

0 commit comments

Comments
 (0)