EDIT: Made a slight tweak to the exec() calls for EMAIL / ATTACHER

This commit is contained in:
Bobbi Webber-Manners 2020-09-15 21:22:39 -04:00
parent 97049e7421
commit 71844373b1

View File

@ -1559,8 +1559,7 @@ void load_email(void) {
revers(0);
clrscr();
chdir(startdir);
snprintf(userentry, 80, "%s/EMAIL.SYSTEM", startdir);
exec(userentry, NULL);
exec("EMAIL.SYSTEM", NULL);
}
/*
@ -1570,8 +1569,7 @@ void load_attacher(void) {
revers(0);
clrscr();
chdir(startdir);
snprintf(userentry, 80, "%s/ATTACHER.SYSTEM", startdir);
exec(userentry, filename);
exec("ATTACHER.SYSTEM", NULL);
}
void file_ui(char *, char *, char *); // Forward declaration