From: Dr. Stephen Henson Date: Fri, 8 Mar 2002 19:12:38 +0000 (+0000) Subject: typo X-Git-Tag: OpenSSL_0_9_7-beta1~160 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a1a4e8b6bb143f67e2969613135f374ec7d85854;p=oweals%2Fopenssl.git typo --- diff --git a/apps/apps.c b/apps/apps.c index 34cd552eb5..f0c280c38d 100644 --- a/apps/apps.c +++ b/apps/apps.c @@ -333,7 +333,7 @@ void program_name(char *in, char *out, int size) #ifdef OPENSSL_SYS_WIN32 int WIN32_rename(char *from, char *to) { - /* Windows rename gives and error if 'to' exists, so delete it + /* Windows rename gives an error if 'to' exists, so delete it * first and ignore file not found errror */ if((remove(to) != 0) && (errno != ENOENT))