commit f17def25bed839664b3242b5f31792d3aa1f53c6 parent 289ecda4aa8688b65300ae647912d791246e4abd Author: Hiltjo Posthuma <[email protected]> Date: Tue Jan 5 21:41:03 +0100 stagit-index: owner is one line, strip newline Diffstat:
stagit-index.c | | | 1 | + |
diff --git a/stagit-index.c b/stagit-index.c @@ -221,6 +221,7 @@ main(int argc, char *argv[]) if (fp) { if (!fgets(owner, sizeof(owner), fp)) owner[0] = '\0'; + owner[strcspn(owner, "\n")] = '\0'; fclose(fp); } writelog(stdout);