mirror of
https://github.com/sudo-project/sudo.git
synced 2025-08-29 21:38:05 +00:00
fixed 2 compiler warnings
This commit is contained in:
parent
399cddc8e6
commit
2f7e9de285
3
sudo.c
3
sudo.c
@ -379,7 +379,6 @@ static void load_globals(sudo_mode)
|
|||||||
int sudo_mode;
|
int sudo_mode;
|
||||||
{
|
{
|
||||||
char *p;
|
char *p;
|
||||||
struct passwd *pw_ent;
|
|
||||||
#ifdef FQDN
|
#ifdef FQDN
|
||||||
struct hostent *h_ent;
|
struct hostent *h_ent;
|
||||||
#endif /* FQDN */
|
#endif /* FQDN */
|
||||||
@ -399,7 +398,7 @@ static void load_globals(sudo_mode)
|
|||||||
|
|
||||||
/* fill in uid and name fields with the uid */
|
/* fill in uid and name fields with the uid */
|
||||||
pw_ent.pw_uid = getuid();
|
pw_ent.pw_uid = getuid();
|
||||||
(void) sprintf(pw_name, "%ld", pw_ent.pw_uid);
|
(void) sprintf(pw_name, "%ld", (long) pw_ent.pw_uid);
|
||||||
pw_ent.pw_name = pw_name;
|
pw_ent.pw_name = pw_name;
|
||||||
user_pw_ent = &pw_ent;
|
user_pw_ent = &pw_ent;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user