logo

stagit

STAtic GIT web view generator (in C) git clone https://hacktivis.me/git/stagit.git
commit: f373cc7235deaec49d2aa86ecdb55c9dd6dc5282
parent e51ec34dbe4bce95f1677db9a4f32dfbe0ad3432
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Tue,  5 Jan 2016 21:43:14 +0100

clone url is one line, strip newline

Diffstat:

Mstagit.c1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/stagit.c b/stagit.c @@ -1008,6 +1008,7 @@ main(int argc, char *argv[]) if (fpread) { if (!fgets(cloneurl, sizeof(cloneurl), fpread)) cloneurl[0] = '\0'; + cloneurl[strcspn(cloneurl, "\n")] = '\0'; fclose(fpread); }