GH271: Warning on </dev/null to CA.pl
If CA.pl is reading from /dev/null, then "chop $FILE" gives a warning. Sigh. Have to add "if $FILE". This just silences a build warning. Thanks to GitHub user andrejs-igumenovs for help with this. Reviewed-by: Richard Levitte <levitte@openssl.org>
This commit is contained in:
parent
b4faea50c3
commit
0fd75c7e6e
@ -121,7 +121,7 @@ if ($WHAT eq '-newcert' ) {
|
|||||||
# ask user for existing CA certificate
|
# ask user for existing CA certificate
|
||||||
print "CA certificate filename (or enter to create)\n";
|
print "CA certificate filename (or enter to create)\n";
|
||||||
$FILE = <STDIN>;
|
$FILE = <STDIN>;
|
||||||
chop $FILE;
|
chop $FILE if $FILE;
|
||||||
if ($FILE) {
|
if ($FILE) {
|
||||||
copy_pemfile($FILE,"${CATOP}/private/$CAKEY", "PRIVATE");
|
copy_pemfile($FILE,"${CATOP}/private/$CAKEY", "PRIVATE");
|
||||||
copy_pemfile($FILE,"${CATOP}/$CACERT", "CERTIFICATE");
|
copy_pemfile($FILE,"${CATOP}/$CACERT", "CERTIFICATE");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user