feat: Fix file flags on FTP server, remove quirks handling option

This commit is contained in:
Felicitas Pojtinger
2022-01-09 03:04:06 +01:00
parent 96aa71a361
commit f1f338734b
8 changed files with 30 additions and 31 deletions

View File

@@ -0,0 +1,9 @@
//go:build !windows
package fs
import "syscall"
const (
O_ACCMODE = syscall.O_ACCMODE
)