xaizek / vifm (License: GPLv2+) (since 2018-12-07)
Vifm is a file manager with curses interface, which provides Vi[m]-like environment for managing objects within file systems, extended with some useful ideas from mutt.
Commit c8265fb3da6c76195129e5a7e0191a020880f0c6

Fix a typo in error message on failure to read
"Read from destination" doesn't make sense.
Author: xaizek
Author date (UTC): 2022-06-19 11:13
Committer name: xaizek
Committer date (UTC): 2022-06-19 11:13
Parent(s): 461666ff23d31f01f390154a191c13940ad3965b
Signing key: 99DC5E4DB05F6BE2
Tree: 558fcea6d6de58636053d87c7610625e07eeb059
File Lines added Lines deleted
src/io/iop.c 1 1
File src/io/iop.c changed (mode: 100644) (index 8a63fcd30..ec374184c)
... ... iop_cp_internal(io_args_t *args)
588 588 if(nread == 0U && !feof(in) && ferror(in)) if(nread == 0U && !feof(in) && ferror(in))
589 589 { {
590 590 (void)ioe_errlst_append(&args->result.errors, src, errno, (void)ioe_errlst_append(&args->result.errors, src, errno,
591 "Read from destination file failed");
591 "Read from source file failed");
592 592 } }
593 593
594 594 /* fwrite() does caching, so we need to force flush to catch output errors /* fwrite() does caching, so we need to force flush to catch output errors
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/vifm

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/vifm

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master