summaryrefslogtreecommitdiff
path: root/sysutils/webmin
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2017-02-05 13:18:24 +0000
committerwiz <wiz@pkgsrc.org>2017-02-05 13:18:24 +0000
commitbf3f42f5061416a28c86e809a1441603fe1cc08e (patch)
treeeee929ec1c59a0c75d279c1d372764eeb6653206 /sysutils/webmin
parentc1f60196c4929fb22ab29c1c818eefbc34cb78ba (diff)
downloadpkgsrc-bf3f42f5061416a28c86e809a1441603fe1cc08e.tar.gz
Remove patch that is not in distinfo.
Diffstat (limited to 'sysutils/webmin')
-rw-r--r--sysutils/webmin/patches/patch-al25
-rw-r--r--sysutils/webmin/patches/patch-an14
2 files changed, 0 insertions, 39 deletions
diff --git a/sysutils/webmin/patches/patch-al b/sysutils/webmin/patches/patch-al
deleted file mode 100644
index 2b3b8e9d521..00000000000
--- a/sysutils/webmin/patches/patch-al
+++ /dev/null
@@ -1,25 +0,0 @@
-$NetBSD: patch-al,v 1.1 2008/07/25 02:55:27 tonnerre Exp $
-
---- file/search.cgi.orig 2007-09-21 23:26:33.000000000 +0200
-+++ file/search.cgi
-@@ -17,16 +17,16 @@ if ($in{'dir'} ne '/') {
- }
- $cmd = "find ".quotemeta(&unmake_chroot($in{'dir'}))." -name ".quotemeta($in{'match'});
- if ($in{'type'}) {
-- $cmd .= " -type $in{'type'}";
-+ $cmd .= " -type " . quotemeta($in{'type'});
- }
- if ($in{'user'}) {
-- $cmd .= " -user $in{'user'}";
-+ $cmd .= " -user " . quotemeta($in{'user'});
- }
- if ($in{'group'}) {
-- $cmd .= " -group $in{'group'}";
-+ $cmd .= " -group " . quotemeta($in{'group'});
- }
- if ($in{'size'}) {
-- $cmd .= " -size $in{'size'}";
-+ $cmd .= " -size " . quotemeta($in{'size'});
- }
- if ($in{'xdev'}) {
- $cmd .= " -mount";
diff --git a/sysutils/webmin/patches/patch-an b/sysutils/webmin/patches/patch-an
deleted file mode 100644
index b39d7c9f44e..00000000000
--- a/sysutils/webmin/patches/patch-an
+++ /dev/null
@@ -1,14 +0,0 @@
-$NetBSD: patch-an,v 1.2 2012/11/02 19:02:51 shattered Exp $
-
---- man/search.cgi.orig 2007-09-21 23:26:43.000000000 +0200
-+++ man/search.cgi
-@@ -255,7 +255,8 @@ if (@rv == 1 && !$in{'check'}) {
- }
-
- # Display search results
--$for = join($in{'and'} ? " and " : " or ", map { "<tt>$_</tt>" } @for);
-+$for = join($in{'and'} ? " and " : " or ", map { "<tt>" . &html_escape($_) .
-+ "</tt>" } @for);
- &ui_print_header(&text('search_for', $for), $text{'search_title'}, "");
- if (@rv) {
- #@rv = sort { $b->[4] <=> $a->[4] } @rv;