diff options
author | Quentin <quentin@deuxfleurs.fr> | 2021-11-20 13:42:20 +0100 |
---|---|---|
committer | Quentin <quentin@deuxfleurs.fr> | 2021-11-20 13:42:20 +0100 |
commit | e10f04c5e36109c2e58d667c4b6ec054cbdd51be (patch) | |
tree | 7288ab0c17c541c921b77d8ddb71add2a54620ac /sftp/allocator.go | |
parent | 87fff9843dd60d4ce05596dc55bff44a3724a6bf (diff) | |
download | bagage-e10f04c5e36109c2e58d667c4b6ec054cbdd51be.tar.gz bagage-e10f04c5e36109c2e58d667c4b6ec054cbdd51be.zip |
It seems to worksftp
Diffstat (limited to 'sftp/allocator.go')
-rw-r--r-- | sftp/allocator.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sftp/allocator.go b/sftp/allocator.go index fc1b6f0..5ae2145 100644 --- a/sftp/allocator.go +++ b/sftp/allocator.go @@ -2,7 +2,7 @@ package sftp /* Imported from: https://github.com/pkg/sftp - */ +*/ import ( "sync" @@ -98,4 +98,3 @@ func (a *allocator) isRequestOrderIDUsed(requestOrderID uint32) bool { _, ok := a.used[requestOrderID] return ok } - |