diff options
author | 2006-01-07 21:32:48 -0800 | |
---|---|---|
committer | 2006-01-07 21:32:48 -0800 | |
commit | 8fc11b5aa98540f7caab87e22e5aae63512893a2 (patch) | |
tree | 42cc20556d8b4766d9a0adbcc2e32de22b9fc6c9 /mailsplit.c | |
parent | GIT 1.0.7 (diff) | |
parent | mailsplit: allow empty input from stdin (diff) | |
download | tgif-8fc11b5aa98540f7caab87e22e5aae63512893a2.tar.xz |
GIT 1.0.8
Diffstat (limited to 'mailsplit.c')
-rw-r--r-- | mailsplit.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mailsplit.c b/mailsplit.c index eb58b1ebe4..14c1358734 100644 --- 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); |