]> Git Repo - linux.git/blobdiff - kernel/timer.c
V4L/DVB (10087): Add new enum_input function on soc_camera
[linux.git] / kernel / timer.c
index dbd50fabe4c74ab241523fbf2b427c596e2838c5..566257d1dc10327818f787e5ca04559c05bd2566 100644 (file)
@@ -1192,25 +1192,25 @@ asmlinkage long sys_getppid(void)
 asmlinkage long sys_getuid(void)
 {
        /* Only we change this so SMP safe */
-       return current->uid;
+       return current_uid();
 }
 
 asmlinkage long sys_geteuid(void)
 {
        /* Only we change this so SMP safe */
-       return current->euid;
+       return current_euid();
 }
 
 asmlinkage long sys_getgid(void)
 {
        /* Only we change this so SMP safe */
-       return current->gid;
+       return current_gid();
 }
 
 asmlinkage long sys_getegid(void)
 {
        /* Only we change this so SMP safe */
-       return  current->egid;
+       return  current_egid();
 }
 
 #endif
This page took 0.032923 seconds and 4 git commands to generate.