Fixed typos in the license

Fixed exception issues


git-svn-id: file:///home/svn/incoming/trunk@3552 4d416f70-5f16-0410-b530-b9f4589650da
unstable
HD Moore 2006-03-07 06:50:25 +00:00
parent c0a8b6cf22
commit feca661373
3 changed files with 5 additions and 5 deletions

View File

@ -12,7 +12,7 @@ b. "Software" means any software that is distributed under the terms of
this License.
c. "Extension" means any enhancement to the Software that does not require
modification of the Software itself. ?Extensions? include any module or
modification of the Software itself. "Extensions" include any module or
plug-in that is intended (by design and coding) to, or can, be
dynamically loaded by the Software.
@ -33,8 +33,8 @@ utilization in any larger application or product).
g. "You" means the individual or organization that is using the Software
under the conditions of the License.
h. "Interface" means to execute, parse, or otherwise benefit from the of
the Software.
h. "Interface" means to execute, parse, or otherwise benefit from the use
of the Software.
i. "Interaction Software" means any external software program or library
that interfaces with, but is not a component or subset of, the Software.

View File

@ -17,7 +17,7 @@ class Error < ::RuntimeError
File.open(file).each { |line|
next if line =~ /^#/
code, string = line.split
code = [code].pack('H*').unpack('L')[0]
code = [code].pack('H*').unpack('N')[0]
@@errors[code] = string
}
end

View File

@ -18,7 +18,7 @@ class Error < ::RuntimeError
File.open(file).each { |line|
next if line =~ /^#/
code, string = line.split
code = [code].pack('H*').unpack('L')[0]
code = [code].pack('H*').unpack('N')[0]
@@errors[code] = string
}
end