commit | cd46aa4ae7e2482716aa3b8a4b0787613e485e08 | [log] [tgz] |
---|---|---|
author | Bodo Möller <bodo@openssl.org> | Sun Apr 25 10:28:26 1999 +0000 |
committer | Bodo Möller <bodo@openssl.org> | Sun Apr 25 10:28:26 1999 +0000 |
tree | 08d16f00e7c49fe9c85c4d96bdf342dffeff9dbb | |
parent | 4c0c739288711c4fa6947b64c23c9fd3f1f44817 [diff] |
Fixed a typo. Submitted by: Reviewed by: PR:
diff --git a/Configure b/Configure index 9b4e130..c1d906d 100755 --- a/Configure +++ b/Configure
@@ -478,7 +478,7 @@ open(OUT,'>crypto/opensslconf.h') || die "unable to create crypto/opensslconf.h:$!\n"; while (<IN>) { - if (/^#defined\s+OPENSSLDIR/) + if (/^#define\s+OPENSSLDIR/) { print OUT "#define OPENSSLDIR $openssldir\n"; } elsif (/^#((define)|(undef))\s+SIXTY_FOUR_BIT_LONG/) { printf OUT "#%s SIXTY_FOUR_BIT_LONG\n",($b64l)?"define":"undef"; }