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 d20557e7e59c27b4d3cf5c3066cc18f1539cc706

Don't print junk after background process output.
Author: xaizek
Author date (UTC): 2011-06-19 12:06
Committer name: xaizek
Committer date (UTC): 2011-06-19 12:06
Parent(s): c1cc5a60a4fcf332dfc3f9cb08ebe329ea57938a
Signing key:
Tree: 5cbc3e291611ad4b0b75c23ad8c07ae4db8a785f
File Lines added Lines deleted
src/background.c 2 2
File src/background.c changed (mode: 100644) (index 7dbe2415b..d8df9f6af)
... ... check_background_jobs(void)
118 118
119 119 if (nread) if (nread)
120 120 { {
121 p->error_buf = (char *) realloc(p->error_buf, sizeof(buf));
121 p->error_buf = (char *) realloc(p->error_buf, nread + 1);
122 122
123 strncat(p->error_buf, buf, sizeof(buf) - 1);
123 strncat(p->error_buf, buf, nread);
124 124 } }
125 125 if (strlen(p->error_buf) > 1) if (strlen(p->error_buf) > 1)
126 126 { {
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