Hi, On Sun, 20 May 2007, Junio C Hamano wrote: > "Fernando J. Pereda" <ferdy@xxxxxxxxxx> writes: > > > - ret = split_mbox(argp, dir, allow_bare, nr_prec, nr); > > + while (*argp) { > > + const char *arg = *argp++; > > + struct stat argstat; > > + > > + if (arg[0] == '-' && arg[1] == 0) { > > + ret |= split_mbox(arg, dir, allow_bare, nr_prec, nr); > > + continue; > > + } > > + > > + if (stat(arg, &argstat) == -1) { > > + error("cannot stat %s (%s)", arg, strerror(errno)); > > + return 1; > > + } > > + > > + if (S_ISDIR(argstat.st_mode)) > > + ret |= split_maildir(arg, dir, nr_prec, nr); > > + else > > + ret |= split_mbox(arg, dir, allow_bare, nr_prec, nr); > > + } > > + > > if (ret != -1) > > printf("%d\n", ret); > > > > No kidding. ret |= stuff and then printf("%d\n", ret) would not > give us the number of commit e-mails on the standard output. Should we not just stop when split_maildir() or split_mbox() returns -1? And yes, we'd probably need a second variable to do take the return value. Ciao, Dscho - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html