blob: 347607e528dc1b313782304abfb467dbf5bfd608 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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;
}
|