[BACK]Return to aux.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mail

Diff for /src/usr.bin/mail/Attic/aux.c between version 1.26 and 1.27

version 1.26, 2014/01/17 18:42:30 version 1.27, 2015/01/16 06:40:09
Line 260 
Line 260 
         FILE    *s_file;                /* File we were in. */          FILE    *s_file;                /* File we were in. */
         int     s_cond;                 /* Saved state of conditionals */          int     s_cond;                 /* Saved state of conditionals */
         int     s_loading;              /* Loading .mailrc, etc. */          int     s_loading;              /* Loading .mailrc, etc. */
 } sstack[NOFILE];  } sstack[OPEN_MAX];
   
 /*  /*
  * Pushdown current input file and switch to a new one.   * Pushdown current input file and switch to a new one.
Line 280 
Line 280 
                 warn("%s", cp);                  warn("%s", cp);
                 return(1);                  return(1);
         }          }
         if (ssp >= NOFILE - 1) {          if (ssp >= OPEN_MAX - 1) {
                 puts("Too much \"sourcing\" going on.");                  puts("Too much \"sourcing\" going on.");
                 (void)Fclose(fi);                  (void)Fclose(fi);
                 return(1);                  return(1);

Legend:
Removed from v.1.26  
changed lines
  Added in v.1.27