mirror of
https://github.com/octoleo/restic.git
synced 2024-11-01 03:12:31 +00:00
0e7d0d8dba
Retrieve the SysProcAttr from a separate function. Completely eliminates syscall from main file.
12 lines
198 B
Go
12 lines
198 B
Go
package sftp
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
// ignoreSigIntProcAttr returns a default syscall.SysProcAttr
|
|
// on Windows.
|
|
func ignoreSigIntProcAttr() *syscall.SysProcAttr {
|
|
return &syscall.SysProcAttr{}
|
|
}
|