mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	Thu, 29 Jul 2010 13:46:40 +0000 nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>
merge revision(s) 28784: * lib/webrick/ssl.rb (WEBrick::Utils.create_self_signed_cert): wrongly created dummy SSL certificate with version == 3 (no such version) and serial == 0 (must be >0). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@28784 b2dd03c8-39d4-4d8f-98ff-823fe69b080e Signed-off-by: URABE, Shyouhei <shyouhei@ruby-lang.org> git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_7@29858 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
		
							parent
							
								
									699a20e917
								
							
						
					
					
						commit
						85697688b4
					
				
					 3 changed files with 9 additions and 3 deletions
				
			
		| 
						 | 
				
			
			@ -1,3 +1,9 @@
 | 
			
		|||
Thu Jul 29 22:43:57 2010  NAKAMURA, Hiroshi  <nahi@ruby-lang.org>
 | 
			
		||||
 | 
			
		||||
	* lib/webrick/ssl.rb (WEBrick::Utils.create_self_signed_cert): wrongly
 | 
			
		||||
	  created dummy SSL certificate with version == 3 (no such version) and
 | 
			
		||||
	  serial == 0 (must be >0).
 | 
			
		||||
 | 
			
		||||
Sat Jul 24 15:44:29 2010  Masaki Suketa <masaki.suketa@nifty.ne.jp>
 | 
			
		||||
 | 
			
		||||
	* ext/win32ole/win32ole.c (fev_initialize): initialize pTypeInfo.
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -50,8 +50,8 @@ module WEBrick
 | 
			
		|||
        end
 | 
			
		||||
      }
 | 
			
		||||
      cert = OpenSSL::X509::Certificate.new
 | 
			
		||||
      cert.version = 3
 | 
			
		||||
      cert.serial = 0
 | 
			
		||||
      cert.version = 2
 | 
			
		||||
      cert.serial = 1
 | 
			
		||||
      name = OpenSSL::X509::Name.new(cn)
 | 
			
		||||
      cert.subject = name
 | 
			
		||||
      cert.issuer = name
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -2,7 +2,7 @@
 | 
			
		|||
#define RUBY_RELEASE_DATE "2010-11-22"
 | 
			
		||||
#define RUBY_VERSION_CODE 187
 | 
			
		||||
#define RUBY_RELEASE_CODE 20101122
 | 
			
		||||
#define RUBY_PATCHLEVEL 307
 | 
			
		||||
#define RUBY_PATCHLEVEL 308
 | 
			
		||||
 | 
			
		||||
#define RUBY_VERSION_MAJOR 1
 | 
			
		||||
#define RUBY_VERSION_MINOR 8
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue