projects
/
kopensolaris-gnu
/
glibc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
92821e1
)
(__libc_init_secure): Correct typo.
author
drepper
<drepper>
Fri, 5 Dec 1997 00:36:26 +0000
(
00:36
+0000)
committer
drepper
<drepper>
Fri, 5 Dec 1997 00:36:26 +0000
(
00:36
+0000)
sysdeps/generic/enbl-secure.c
patch
|
blob
|
history
diff --git
a/sysdeps/generic/enbl-secure.c
b/sysdeps/generic/enbl-secure.c
index
8e1327c
..
3520ad5
100644
(file)
--- a/
sysdeps/generic/enbl-secure.c
+++ b/
sysdeps/generic/enbl-secure.c
@@
-32,7
+32,7
@@
uid_t __libc_uid;
void
__libc_init_secure (void)
{
- __libc_uid =
=
__getuid ();
+ __libc_uid = __getuid ();
__libc_enable_secure = (__geteuid () != __libc_uid
|| __getegid () != __getgid ());
}