xaizek / pinfo (License: GPLv2 only) (since 2018-12-07)
Console-based info and manual pages reader, which adds interactive navigation to man pages.
Commit 598f5ae80d853e15731033b54894e8984bd94a52

Fix another possible string truncation
Author: bas@zoetekouw.net
Author date (UTC): 2017-08-09 13:20
Committer name: bas@zoetekouw.net
Committer date (UTC): 2017-08-09 13:20
Parent(s): 57039a03ee00996a3414c4594a403391ccb3b61a
Signing key:
Tree: 0f3514d46cb36002412273a3d47ce2909f454da4
File Lines added Lines deleted
src/filehandling_functions.c 2 2
File src/filehandling_functions.c changed (mode: 100644) (index 7fe7b12..51d7fe1)
... ... create_indirect_tag_table()
1113 1113 /* display error message to make the user aware of /* display error message to make the user aware of
1114 1114 * the broken info page * the broken info page
1115 1115 */ */
1116 char msg[81];
1117 snprintf(msg, 81, "%s '%s' (%s)",
1116 char msg[1024];
1117 snprintf(msg, 1024, "%s '%s' (%s)",
1118 1118 _("Can't open file"), indirect[i].filename, _("Can't open file"), indirect[i].filename,
1119 1119 _("press a key to continue") ); _("press a key to continue") );
1120 1120 attrset(bottomline); attrset(bottomline);
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/pinfo

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

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