summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2018-03-06 21:05:16 +0100
committerRichard Levitte <levitte@openssl.org>2018-03-06 21:18:33 +0100
commit49cd47eaababc8c57871b929080fc1357e2ad7b8 (patch)
tree0097da5ca803df7a03a70cf376772d139947a4f5 /util
parentcd15cb4d21fce81c94bc16f991c4bb1c73e71bfe (diff)
util/dofile.pl: only quote stuff that actually needs quoting
Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/5533)
Diffstat (limited to 'util')
-rw-r--r--util/dofile.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/dofile.pl b/util/dofile.pl
index 0f2e8f0b53..2ea54e3099 100644
--- a/util/dofile.pl
+++ b/util/dofile.pl
@@ -99,9 +99,9 @@ package main;
# This adds quotes (") around the given string, and escapes any $, @, \,
# " and ' by prepending a \ to them.
sub quotify1 {
- my $s = shift @_;
+ my $s = my $orig = shift @_;
$s =~ s/([\$\@\\"'])/\\$1/g;
- '"'.$s.'"';
+ $s ne $orig || $s =~ /\s/ ? '"'.$s.'"' : $s;
}
# quotify_l LIST