Re: Removing /usr/lib/sendmail
BTW, one line catched my eye in the output of 'strings atd':
idiotic option - aborted
When does atd give this error message?
It can't. Look at this excerpt from atd.c:
while ((c = getopt(argc, argv, "sdl:b:")) != EOF) {
switch (c) {
[...cases for s, d, l, and b...]
case '?':
pabort("unknown option");
break;
default:
pabort("idiotic option - aborted");
break;
}
}
getopt() will only return '?' and the characters passed in its third
argument. The default case is just a sanity check.
--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to
debian-devel-request@lists.debian.org .
Trouble? e-mail to templin@bucknell.edu .
Reply to: