From 022ac87d66739312a77f8e7de40fdf89eb5f868b Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Fri, 9 Jun 2017 08:58:44 -0600 Subject: [PATCH] avoid padding in struct cmndspec --- plugins/sudoers/parse.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/sudoers/parse.h b/plugins/sudoers/parse.h index b16f9ce03..e4cb7dc96 100644 --- a/plugins/sudoers/parse.h +++ b/plugins/sudoers/parse.h @@ -178,9 +178,9 @@ struct cmndspec { struct member_list *runasgrouplist; /* list of runas groups */ struct member *cmnd; /* command to allow/deny */ struct cmndtag tags; /* tag specificaion */ + int timeout; /* command timeout */ time_t notbefore; /* time restriction */ time_t notafter; /* time restriction */ - int timeout; /* command timeout */ #ifdef HAVE_SELINUX char *role, *type; /* SELinux role and type */ #endif -- 2.50.1