mirror of
https://github.com/mirror/make.git
synced 2025-01-16 15:20:39 +08:00
Formerly misc.c.~27~
This commit is contained in:
parent
b018243a45
commit
e813da324d
10
misc.c
10
misc.c
@ -509,9 +509,13 @@ log_access (flavor)
|
||||
if (! debug_flag)
|
||||
return;
|
||||
|
||||
printf ("%s access: user %d (real %d), group %d (real %d)\n",
|
||||
flavor, geteuid (), getuid (), getegid (), getgid ());
|
||||
fflush (stdout);
|
||||
/* All the other debugging messages go to stdout,
|
||||
but we write this one to stderr because it might be
|
||||
run in a child fork whose stdout is piped. */
|
||||
|
||||
fprintf (stderr, "%s access: user %d (real %d), group %d (real %d)\n",
|
||||
flavor, geteuid (), getuid (), getegid (), getgid ());
|
||||
fflush (stderr);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user