Diff for /embedaddon/sudo/plugins/sudoers/toke.h between versions 1.1.1.3 and 1.1.1.4

version 1.1.1.3, 2012/10/09 09:29:52 version 1.1.1.4, 2013/07/22 10:46:12
Line 1 Line 1
 /*  /*
 * Copyright (c) 2011 Todd C. Miller <Todd.Miller@courtesan.com> * Copyright (c) 2011-2013 Todd C. Miller <Todd.Miller@courtesan.com>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 14 Line 14
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.   * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */   */
   
#ifndef _SUDO_TOKE_H#ifndef _SUDOERS_TOKE_H
#define _SUDO_TOKE_H#define _SUDOERS_TOKE_H
   
 bool append(const char *, int);  bool append(const char *, int);
 bool fill_args(const char *, int, int);  bool fill_args(const char *, int, int);
Line 23  bool fill_cmnd(const char *, int); Line 23  bool fill_cmnd(const char *, int);
 bool fill_txt(const char *, int, int);  bool fill_txt(const char *, int, int);
 bool ipv6_valid(const char *s);  bool ipv6_valid(const char *s);
 int sudoers_trace_print(const char *msg);  int sudoers_trace_print(const char *msg);
void yyerror(const char *);void sudoerserror(const char *);
   
 #ifndef FLEX_SCANNER  #ifndef FLEX_SCANNER
 extern int (*trace_print)(const char *msg);  extern int (*trace_print)(const char *msg);
Line 39  extern int (*trace_print)(const char *msg); Line 39  extern int (*trace_print)(const char *msg);
         (*trace_print)(msg);                                            \          (*trace_print)(msg);                                            \
 } while (0);  } while (0);
   
#endif /* _SUDO_TOKE_H */#endif /* _SUDOERS_TOKE_H */

Removed from v.1.1.1.3  
changed lines
  Added in v.1.1.1.4


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