This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [COMMITTED] Remove __wur from setfsuid and setfsgid.


On Wed, Apr 17, 2013 at 10:45:29PM -0600, Adam Conrad wrote:
> 
>        * sysdeps/unix/sysv/linux/sys/fsuid.h: Remove __wur from setfsuid
>        and setfsgid.
> 
> 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
>  

Committed as above, based on feedback.

... Adam


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]