=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mail/Attic/aux.c,v retrieving revision 1.26 retrieving revision 1.27 diff -c -r1.26 -r1.27 *** src/usr.bin/mail/Attic/aux.c 2014/01/17 18:42:30 1.26 --- src/usr.bin/mail/Attic/aux.c 2015/01/16 06:40:09 1.27 *************** *** 1,4 **** ! /* $OpenBSD: aux.c,v 1.26 2014/01/17 18:42:30 okan Exp $ */ /* $NetBSD: aux.c,v 1.5 1997/05/13 06:15:52 mikel Exp $ */ /* --- 1,4 ---- ! /* $OpenBSD: aux.c,v 1.27 2015/01/16 06:40:09 deraadt Exp $ */ /* $NetBSD: aux.c,v 1.5 1997/05/13 06:15:52 mikel Exp $ */ /* *************** *** 260,266 **** FILE *s_file; /* File we were in. */ int s_cond; /* Saved state of conditionals */ int s_loading; /* Loading .mailrc, etc. */ ! } sstack[NOFILE]; /* * Pushdown current input file and switch to a new one. --- 260,266 ---- FILE *s_file; /* File we were in. */ int s_cond; /* Saved state of conditionals */ int s_loading; /* Loading .mailrc, etc. */ ! } sstack[OPEN_MAX]; /* * Pushdown current input file and switch to a new one. *************** *** 280,286 **** warn("%s", cp); return(1); } ! if (ssp >= NOFILE - 1) { puts("Too much \"sourcing\" going on."); (void)Fclose(fi); return(1); --- 280,286 ---- warn("%s", cp); return(1); } ! if (ssp >= OPEN_MAX - 1) { puts("Too much \"sourcing\" going on."); (void)Fclose(fi); return(1);