Diff for /embedaddon/sudo/plugins/sudoers/regress/parser/check_fill.c between versions 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2012/02/21 16:23:02 version 1.1.1.2, 2012/05/29 12:26:49
Line 26 Line 26
 #  include <stdlib.h>  #  include <stdlib.h>
 # endif  # endif
 #endif /* STDC_HEADERS */  #endif /* STDC_HEADERS */
   #ifdef HAVE_STDBOOL_H
   # include <stdbool.h>
   #else
   # include "compat/stdbool.h"
   #endif /* HAVE_STDBOOL_H */
 #ifdef HAVE_STRING_H  #ifdef HAVE_STRING_H
 # include <string.h>  # include <string.h>
 #endif /* HAVE_STRING_H */  #endif /* HAVE_STRING_H */
Line 35 Line 40
 #include <grp.h>  #include <grp.h>
 #include <pwd.h>  #include <pwd.h>
   
   #define SUDO_ERROR_WRAP 0
   
 #include "list.h"  #include "list.h"
 #include "parse.h"  #include "parse.h"
 #include "toke.h"  #include "toke.h"
#include "gram.h"#include "sudo_plugin.h"
 #include <gram.h>
   
 /*  /*
  * TODO: test realloc   * TODO: test realloc
  */   */
   
   sudo_conv_t sudo_conv;          /* NULL in non-plugin */
   
 YYSTYPE yylval;  YYSTYPE yylval;
   

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>