From: Todd C. Miller Date: Fri, 9 Jun 2017 14:58:44 +0000 (-0600) Subject: avoid padding in struct cmndspec X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=022ac87d66739312a77f8e7de40fdf89eb5f868b;p=sudo avoid padding in struct cmndspec --- 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