summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>1999-05-20 02:09:46 +0000
committerUlf Möller <ulf@openssl.org>1999-05-20 02:09:46 +0000
commitda70ff710c712645cddbb7505491a5786abca0b9 (patch)
tree15d1d04d63eabb30e19312b53d732a55f6075baf /apps
parent7a01a45bc4f067a86df97dcb2bac829de33eba6e (diff)
Avoid a warning.
Submitted by: Sylvain Robitaille <syl@alcor.concordia.ca>
Diffstat (limited to 'apps')
-rwxr-xr-xapps/CA.pl2
1 files changed, 1 insertions, 1 deletions
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;