From d2ede125556ac99aa0faa7744c703af3f559094e Mon Sep 17 00:00:00 2001 From: Tomas Mraz Date: Sep 20 2018 15:10:58 +0000 Subject: remove unused patch file --- diff --git a/openssl-1.1.0-missing-quotes.patch b/openssl-1.1.0-missing-quotes.patch deleted file mode 100644 index 3fb8784..0000000 --- a/openssl-1.1.0-missing-quotes.patch +++ /dev/null @@ -1,15 +0,0 @@ -diff -up openssl-1.1.0h/util/dofile.pl.missing-quotes openssl-1.1.0h/util/dofile.pl ---- openssl-1.1.0h/util/dofile.pl.missing-quotes 2018-03-27 15:50:41.000000000 +0200 -+++ openssl-1.1.0h/util/dofile.pl 2018-04-03 11:59:36.742091742 +0200 -@@ -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 = my $orig = shift @_; -+ my $s = shift @_; - $s =~ s/([\$\@\\"'])/\\$1/g; -- $s ne $orig || $s =~ /\s/ ? '"'.$s.'"' : $s; -+ '"'.$s.'"'; - } - - # quotify_l LIST