Changed Direct flag to 'd' instead of 'i'

This commit is contained in:
Michiel Broek
2004-07-11 15:43:49 +00:00
parent eb357ca168
commit 7a147613e3
3 changed files with 13 additions and 20 deletions

View File

@@ -291,7 +291,7 @@ int outstat()
for (tmp = alist; tmp; tmp = tmp->next) {
if ((tmp->flavors & F_FREQ) || (tmp->size) || 1) {
strcpy(flstr,"......");
if ((tmp->flavors) & F_IMM ) flstr[0]='I';
if ((tmp->flavors) & F_IMM ) flstr[0]='D';
if ((tmp->flavors) & F_CRASH ) flstr[1]='C';
if ((tmp->flavors) & F_NORMAL) flstr[2]='N';
if ((tmp->flavors) & F_HOLD ) flstr[3]='H';
@@ -389,7 +389,7 @@ int each(faddr *addr, char flavor, int isflo, char *fname)
for (p = buf; *p && isspace(*p); p++);
if (*p == '~')
continue;
if ((*p == '#') || (*p == '-') || (*p == '^') || (*p == '@'))
if ((*p == '#') || (*p == '-') || (*p == '^') || (*p == '@') || (*p == '~'))
p++;
if (stat(p, &st) != 0) {
if (strlen(CFG.dospath)) {