From: Bodo Möller Date: Sun, 25 Apr 1999 10:28:26 +0000 (+0000) Subject: Fixed a typo. X-Git-Tag: OpenSSL_0_9_3beta1~241 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=cd46aa4ae7e2482716aa3b8a4b0787613e485e08 Fixed a typo. Submitted by: Reviewed by: PR: --- diff --git a/Configure b/Configure index 9b4e1307ac..c1d906dbdb 100755 --- a/Configure +++ b/Configure @@ -478,7 +478,7 @@ open(IN,'crypto/opensslconf.h') || die "unable to create crypto/opensslconf.h:$!\n"; while () { - 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"; }