Undo previous change.

This commit is contained in:
Dan Nicolaescu 2008-02-10 19:24:48 +00:00
parent 40c02e0035
commit 45c1955de8
2 changed files with 9 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2008-02-10 Dan Nicolaescu <dann@ics.uci.edu>
* fakemail.c: Undo previous change.
2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
* fakemail.c (MAIL_PROGRAM_NAME): Remove unused conditional.

View file

@ -135,6 +135,10 @@ struct linebuffer lb;
#define NIL ((line_list) NULL)
#define INITIAL_LINE_SIZE 200
#ifndef MAIL_PROGRAM_NAME
#define MAIL_PROGRAM_NAME "/bin/mail"
#endif
static char *my_name;
static char *the_date;
static char *the_user;
@ -730,7 +734,7 @@ main (argc, argv)
mail_program_name = getenv ("FAKEMAILER");
if (!(mail_program_name && *mail_program_name))
mail_program_name = "/bin/mail";
mail_program_name = MAIL_PROGRAM_NAME;
name_length = strlen (mail_program_name);
my_name = MY_NAME;