From: Lutz Jänicke Date: Wed, 7 Feb 2001 14:15:41 +0000 (+0000) Subject: Fix typo preventing correct usage of -out option. X-Git-Tag: OpenSSL_0_9_6a-beta1~48^2~32 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=73fc98a7bf71a53f8e713e09ff43deeb5b16a704;p=oweals%2Fopenssl.git Fix typo preventing correct usage of -out option. --- diff --git a/apps/rand.c b/apps/rand.c index 6add7bbd6c..8d95a52151 100644 --- a/apps/rand.c +++ b/apps/rand.c @@ -51,7 +51,7 @@ int MAIN(int argc, char **argv) else badopt = 1; } - if (strcmp(argv[i], "-engine") == 0) + else if (strcmp(argv[i], "-engine") == 0) { if ((argv[i+1] != NULL) && (engine == NULL)) engine = argv[++i];