mirror of
https://github.com/veeso/termscp.git
synced 2025-12-07 09:36:00 -08:00
Windows fix for fs mod
This commit is contained in:
@@ -13,6 +13,7 @@ Released on 13/12/2020
|
|||||||
|
|
||||||
- General performance and code improvements
|
- General performance and code improvements
|
||||||
- Improved symlinks management
|
- Improved symlinks management
|
||||||
|
- Possibility to abort file transfers
|
||||||
- Keybindings:
|
- Keybindings:
|
||||||
- `E`: Delete file (Same as `DEL`); added because some keyboards don't have `DEL` (hey, that's my MacBook Air's keyboard!)
|
- `E`: Delete file (Same as `DEL`); added because some keyboards don't have `DEL` (hey, that's my MacBook Air's keyboard!)
|
||||||
- `Ctrl+C`: Abort transfer process
|
- `Ctrl+C`: Abort transfer process
|
||||||
|
|||||||
@@ -248,7 +248,7 @@ impl std::fmt::Display for FsEntry {
|
|||||||
};
|
};
|
||||||
#[cfg(target_os = "windows")]
|
#[cfg(target_os = "windows")]
|
||||||
let username: usize = match self.get_user() {
|
let username: usize = match self.get_user() {
|
||||||
Some(uid) => uid,
|
Some(uid) => uid as usize,
|
||||||
None => 0,
|
None => 0,
|
||||||
};
|
};
|
||||||
// Get group
|
// Get group
|
||||||
|
|||||||
Reference in New Issue
Block a user