diff options
author | Adam Conrad <adconrad@0c3.net> | 2013-04-18 23:58:16 -0600 |
---|---|---|
committer | Adam Conrad <adconrad@0c3.net> | 2013-04-18 23:58:16 -0600 |
commit | ccdad15df5bb2ec898fbf10c7195164cf228833a (patch) | |
tree | a2481420c1cadef9d91a2b73b3d75d4d21ce6ace /sysdeps | |
parent | 7756ba9d6d268b893fd17e56119cea6636be903f (diff) | |
download | glibc-ccdad15df5bb2ec898fbf10c7195164cf228833a.zip glibc-ccdad15df5bb2ec898fbf10c7195164cf228833a.tar.gz glibc-ccdad15df5bb2ec898fbf10c7195164cf228833a.tar.bz2 |
Remove __wur from setfsuid and setfsgid.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/unix/sysv/linux/sys/fsuid.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/sys/fsuid.h b/sysdeps/unix/sysv/linux/sys/fsuid.h index f844a5f..7590313 100644 --- a/sysdeps/unix/sysv/linux/sys/fsuid.h +++ b/sysdeps/unix/sysv/linux/sys/fsuid.h @@ -25,10 +25,10 @@ __BEGIN_DECLS /* Change uid used for file access control to UID, without affecting other privileges (such as who can send signals at the process). */ -extern int setfsuid (__uid_t __uid) __THROW __wur; +extern int setfsuid (__uid_t __uid) __THROW; /* Ditto for group id. */ -extern int setfsgid (__gid_t __gid) __THROW __wur; +extern int setfsgid (__gid_t __gid) __THROW; __END_DECLS |