summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--builtin-shortlog.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/builtin-shortlog.c b/builtin-shortlog.c
index 7a2ddfe..3322c3a 100644
--- a/builtin-shortlog.c
+++ b/builtin-shortlog.c
@@ -195,11 +195,17 @@ static void read_from_stdin(struct path_list *list)
while (fgets(buffer2, sizeof(buffer2), stdin) &&
buffer2[0] != '\n')
; /* chomp input */
- if (fgets(buffer2, sizeof(buffer2), stdin))
+ if (fgets(buffer2, sizeof(buffer2), stdin)) {
+ int l2 = strlen(buffer2);
+ int i;
+ for (i = 0; i < l2; i++)
+ if (!isspace(buffer2[i]))
+ break;
insert_author_oneline(list,
buffer + offset,
bob - buffer - offset,
- buffer2, strlen(buffer2));
+ buffer2 + i, l2 - i);
+ }
}
}
}