projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a196d8d
)
Add "Index: " to the list of things that start a patch
author
Linus Torvalds
<torvalds@ppc970.osdl.org>
Thu, 23 Jun 2005 18:00:23 +0000
(11:00 -0700)
committer
Linus Torvalds
<torvalds@ppc970.osdl.org>
Thu, 23 Jun 2005 18:00:23 +0000
(11:00 -0700)
This way we don't get it in the commit message, even if the patch had
been generated by cogito (or CVS, ugh) and people didn't add the proper
"---" marker.
mailinfo.c
patch
|
blob
|
history
diff --git
a/mailinfo.c
b/mailinfo.c
index
6c4d589
..
ae279bf
100644
(file)
--- a/
mailinfo.c
+++ b/
mailinfo.c
@@
-193,7
+193,8
@@
static void handle_rest(void)
do {
if (!memcmp("diff -", line, 6) ||
- !memcmp("---", line, 3))
+ !memcmp("---", line, 3) ||
+ !memcmp("Index: ", line, 7))
out = patchfile;
fputs(line, out);