From c3991cf7e7317e3d2d13c277bad709ac5867581a Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Sat, 17 Aug 1996 17:22:02 +0000 Subject: [PATCH] added struct command_alias --- sudo.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/sudo.h b/sudo.h index f64d4d3e2..093b24c37 100644 --- a/sudo.h +++ b/sudo.h @@ -89,6 +89,16 @@ struct sudo_match { int nopasswd; }; +/* + * Structure containing Cmnd_Alias's if "sudo -l" is used. + */ +struct command_alias { + char *alias; + char *entries; + size_t entries_size; + size_t entries_len; +}; + /* * Maximum number of characters to log per entry. The syslogger * will log this much, after that, it truncates the log line. -- 2.40.0