Path: utzoo!attcan!uunet!cs.utexas.edu!usc!ucsd!ucbvax!THUMPER.BELLCORE.COM!nsb From: nsb@THUMPER.BELLCORE.COM (Nathaniel Borenstein) Newsgroups: comp.soft-sys.andrew Subject: YAEP (Yet Another Eatmail Patch) Message-ID: Date: 3 Aug 90 15:05:01 GMT Sender: daemon@ucbvax.BERKELEY.EDU Organization: The Internet Lines: 20 They're coming fast & furious, folks. Thanks for all your cards & letters... To make the -l argument more flexible, change the two lines starting at line 52 from: logfile = &argv[1][2]; if (*logfile == ':') ++logfile; to: if (argc > 2 && argv[1][2] == '\0') { logfile = argv[2]; ++argv; --argc; } else { logfile = &argv[1][2]; if (*logfile == ':') ++logfile; } Cheers. -- Nathaniel