=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/sudo/Attic/testsudoers.c,v retrieving revision 1.16 retrieving revision 1.17 diff -c -r1.16 -r1.17 *** src/usr.bin/sudo/Attic/testsudoers.c 2008/11/14 11:58:08 1.16 --- src/usr.bin/sudo/Attic/testsudoers.c 2008/11/22 16:33:42 1.17 *************** *** 71,77 **** #endif /* HAVE_FNMATCH */ #ifndef lint ! __unused static const char rcsid[] = "$Sudo: testsudoers.c,v 1.127 2008/11/09 14:13:12 millert Exp $"; #endif /* lint */ --- 71,77 ---- #endif /* HAVE_FNMATCH */ #ifndef lint ! __unused static const char rcsid[] = "$Sudo: testsudoers.c,v 1.128 2008/11/19 17:01:20 millert Exp $"; #endif /* lint */ *************** *** 100,105 **** --- 100,112 ---- extern char *optarg; extern int optind; + #if defined(SUDO_DEVEL) && defined(__OpenBSD__) + extern char *malloc_options; + #endif + #ifdef YYDEBUG + extern int yydebug; + #endif + int print_alias __P((void *, void *)); void dump_sudoers __P((void)); void print_defaults __P((void)); *************** *** 133,140 **** char *p, *grfile, *pwfile, *runas_group, *runas_user; char hbuf[MAXHOSTNAMELEN + 1]; int ch, dflag, rval, matched; ! #ifdef YYDEBUG ! extern int yydebug; yydebug = 1; #endif --- 140,150 ---- char *p, *grfile, *pwfile, *runas_group, *runas_user; char hbuf[MAXHOSTNAMELEN + 1]; int ch, dflag, rval, matched; ! ! #if defined(SUDO_DEVEL) && defined(__OpenBSD__) ! malloc_options = "AFGJPR"; ! #endif ! #ifdef YYDEBUG yydebug = 1; #endif