2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-31 14:25:15 +00:00

use __signed char if we are going to assign a negative value since on Power, char is unsigned by default

This commit is contained in:
Todd C. Miller
2008-10-03 14:02:31 +00:00
parent 99cdf6dc8d
commit a71667af5b

View File

@@ -42,10 +42,10 @@ struct sudo_command {
* Possible valus: TRUE, FALSE, UNSPEC.
*/
struct cmndtag {
char nopasswd;
char noexec;
char setenv;
char extra;
__signed char nopasswd;
__signed char noexec;
__signed char setenv;
__signed char extra;
};
/*