No need to use __signed.

This commit is contained in:
Todd C. Miller
2013-12-17 16:08:18 -07:00
parent a0204080ee
commit eb44a5ba5c
4 changed files with 5 additions and 27 deletions

View File

@@ -53,11 +53,11 @@ struct sudo_command {
* Possible values: true, false, IMPLIED, UNSPEC.
*/
struct cmndtag {
__signed int nopasswd: 3;
__signed int noexec: 3;
__signed int setenv: 3;
__signed int log_input: 3;
__signed int log_output: 3;
int nopasswd: 3;
int noexec: 3;
int setenv: 3;
int log_input: 3;
int log_output: 3;
};
/*