This is the mail archive of the cygwin-developers@cygwin.com mailing list for the Cygwin 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]

setregid() and setreuid() implementation proposal


Is the following simplistic setregid() implementation acceptable?

    extern "C" int
    setregid (__gid16_t rgid, __gid16_t egid)
    {
      if (rgid != -1)
        {
          set_errno (EINVAL);
          return -1;
        }
      return setegid (egid);
    }

And, likewise for setreuid()?

If so, then I will submit the corresponding patch.

Thanks,
Jason

-- 
PGP/GPG Key: http://www.tishler.net/jason/pubkey.asc or key servers
Fingerprint: 7A73 1405 7F2B E669 C19D  8784 1AFD E4CC ECF4 8EF6


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