clone url is one line, strip newline - stagit-gopher - A git gopher frontend. (mirror) HTML git clone git://bitreich.org/stagit-gopher/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/stagit-gopher/ DIR Log DIR Files DIR Refs DIR Tags DIR README DIR LICENSE --- DIR commit f373cc7235deaec49d2aa86ecdb55c9dd6dc5282 DIR parent e51ec34dbe4bce95f1677db9a4f32dfbe0ad3432 HTML Author: Hiltjo Posthuma <hiltjo@codemadness.org> Date: Tue, 5 Jan 2016 21:43:14 +0100 clone url is one line, strip newline Diffstat: M stagit.c | 1 + 1 file changed, 1 insertion(+), 0 deletions(-) --- DIR 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); }