diff options
Diffstat (limited to 'net-dns/pdns/files/2.9.19-slash-support.patch')
-rw-r--r-- | net-dns/pdns/files/2.9.19-slash-support.patch | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/net-dns/pdns/files/2.9.19-slash-support.patch b/net-dns/pdns/files/2.9.19-slash-support.patch deleted file mode 100644 index 347607e528dc..000000000000 --- a/net-dns/pdns/files/2.9.19-slash-support.patch +++ /dev/null @@ -1,12 +0,0 @@ -Index: pdns/packethandler.cc -=================================================================== ---- pdns/packethandler.cc (revision 518) -+++ pdns/packethandler.cc (revision 537) -@@ -541,5 +541,5 @@ - (c >= 'A' && c <= 'Z') || - (c >= '0' && c <= '9') || -- c =='-' || c == '_' || c=='*' || c=='.')) -+ c =='-' || c == '_' || c=='*' || c=='.' || c=='/')) - return false; - } - |