Skip to content

Commit

Permalink
reenable '[' and ']' chars on SAF
Browse files Browse the repository at this point in the history
  • Loading branch information
lmagyar committed Aug 31, 2024
1 parent b39d1f1 commit d9ba563
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions primitiveFTPd/src/org/primftpd/filesystem/SafFile.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ public abstract class SafFile<T> extends AbstractFile {
private final static Set<String> KNOWN_BAD_CHARS;
static {
Set<String> tmp = new HashSet<>();
tmp.add("[");
tmp.add("]");
tmp.add("*");
tmp.add("?");
tmp.add("\\");
Expand Down

0 comments on commit d9ba563

Please sign in to comment.