~ubuntu-branches/ubuntu/saucy/sudo/saucy

« back to all changes in this revision

Viewing changes to plugins/sudoers/defaults.h

  • Committer: Package Import Robot
  • Author(s): Stéphane Graber
  • Date: 2012-11-16 09:31:32 UTC
  • mfrom: (1.4.13)
  • Revision ID: package-import@ubuntu.com-20121116093132-ptext55adlzbrq6y
Tags: 1.8.6p3-0ubuntu1
* New upstream release (1.8.6p3).
* Add patch to fix building with sssd when ldap is disabled.
* Drop sudo.manpages and sudo-ldap.manpages as the upstream build system
  now does the right thing here.
* Build the main sudo package with support for sssd, this doesn't add any
  additional build time or runtime dependency. sudo will dynamically load
  the sssd library if 'sss' is listed for the 'sudoers' nss service.

Show diffs side-by-side

added added

removed removed

Lines of Context:
93
93
#define T_PATH          0x200
94
94
 
95
95
/*
96
 
 * Argument to update_defaults()
 
96
 * Argument to update_defaults() and check_defaults()
97
97
 */
98
98
#define SETDEF_GENERIC  0x01
99
99
#define SETDEF_HOST     0x02
107
107
 */
108
108
void dump_default(void);
109
109
void init_defaults(void);
110
 
bool set_default(char *, char *, int);
111
 
int  update_defaults(int);
 
110
bool set_default(char *var, char *val, int op);
 
111
bool update_defaults(int what);
 
112
bool check_defaults(int what, bool quiet);
112
113
 
113
114
extern struct sudo_defs_types sudo_defs_table[];
114
115