projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
013049c
)
mailsplit: allow empty input from stdin
author
Junio C Hamano
<junkio@cox.net>
Sun, 8 Jan 2006 05:26:30 +0000
(21:26 -0800)
committer
Junio C Hamano
<junkio@cox.net>
Sun, 8 Jan 2006 05:26:30 +0000
(21:26 -0800)
Signed-off-by: Junio C Hamano <junkio@cox.net>
mailsplit.c
patch
|
blob
|
history
diff --git
a/mailsplit.c
b/mailsplit.c
index
eb58b1e
..
14c1358
100644
(file)
--- a/
mailsplit.c
+++ b/
mailsplit.c
@@
-169,8
+169,11
@@
int main(int argc, const char **argv)
if ( !f )
die ("cannot open mbox %s", file);
- if (fgets(buf, sizeof(buf), f) == NULL)
+ if (fgets(buf, sizeof(buf), f) == NULL) {
+ if (f == stdin)
+ break; /* empty stdin is OK */
die("cannot read mbox %s", file);
+ }
while (!file_done) {
sprintf(name, "%s/%0*d", dir, nr_prec, ++nr);