Commit 657e60fa authored by Ulf Möller's avatar Ulf Möller
Browse files

ispell (and minor modifications)

parent 9dbc41d7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -51,7 +51,7 @@ directory. The syntax is trhe following:

Note: The RSAREF libraries are NOT INCLUDED and you have to
      download it from "ftp://ftp.rsa.com/rsaref".  You have to
      get the ".tar-Z" file as the ".zip" file dosen't have the
      get the ".tar-Z" file as the ".zip" file doesn't have the
      directory structure stored.  You have to extract the file
      into the [.RSAREF] directory as that is where the scripts
      will look for the files.
@@ -175,7 +175,7 @@ dependent on the OpenVMS version or the C library version, *and* you
can use those macros to simulate older OpenVMS or C library versions,
by defining the macros _VMS_V6_SOURCE, __VMS_VER and __CTRL_VER with
correct values.  In the compilation scripts, I've provided the possibility
for the user to influense the creation of such macros, through a bunch of
for the user to influence the creation of such macros, through a bunch of
symbols, all having names starting with USER_.  Here's the list of them:

  USER_CCFLAGS		 - Used to give additional qualifiers to the
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@

 Heres a few comments about building OpenSSL in Windows environments. Most of
 this is tested on Win32 but it may also work in Win 3.1 with some
 modification.  See the end of this file for Eric's original comments.
 modification.

 You need Perl for Win32 (available from http://www.activestate.com/ActivePerl)
 and one of the following C compilers:
+1 −1
Original line number Diff line number Diff line
@@ -66,7 +66,7 @@ foreach (@ARGV) {
	    $RET=$?;
	    print "Request (and private key) is in newreq.pem\n";
	} elsif (/^-newca$/) {
		# if explictly asked for or it doesn't exist then setup the
		# if explicitly asked for or it doesn't exist then setup the
		# directory structure that Eric likes to manage things 
	    $NEW="1";
	    if ( "$NEW" || ! -f "${CATOP}/serial" ) {
+1 −1
Original line number Diff line number Diff line
@@ -60,7 +60,7 @@ case $i in
    echo "Request (and private key) is in newreq.pem"
    ;;
-newca)     
    # if explictly asked for or it doesn't exist then setup the directory
    # if explicitly asked for or it doesn't exist then setup the directory
    # structure that Eric likes to manage things 
    NEW="1"
    if [ "$NEW" -o ! -f ${CATOP}/serial ]; then
+1 −1
Original line number Diff line number Diff line
@@ -180,7 +180,7 @@ int app_RAND_write_file(const char *file, BIO *bio_e)
	if (!seeded)
		/* If we did not manage to read the seed file,
		 * we should not write a low-entropy seed file back --
		 * it would supress a crucial warning the next time
		 * it would suppress a crucial warning the next time
		 * we want to use it. */
		return 0;

Loading