From da70ff710c712645cddbb7505491a5786abca0b9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ulf=20M=C3=B6ller?= Date: Thu, 20 May 1999 02:09:46 +0000 Subject: [PATCH 1/1] Avoid a warning. Submitted by: Sylvain Robitaille --- apps/CA.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/CA.pl b/apps/CA.pl index 901f8c99fb..7c023ae71f 100755 --- a/apps/CA.pl +++ b/apps/CA.pl @@ -68,7 +68,7 @@ foreach (@ARGV) { # if explictly 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 ) { + if ( "$NEW" || ! -f "${CATOP}/serial" ) { # create the directory hierarchy mkdir $CATOP, $DIRMODE; mkdir "${CATOP}/certs", $DIRMODE; -- 2.34.1