Commit da70ff71 authored by Ulf Möller's avatar Ulf Möller
Browse files

Avoid a warning.

Submitted by: Sylvain Robitaille <syl@alcor.concordia.ca>
parent 7a01a45b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;