Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-10-26 | Always use uint32_t for UID/GID numbers | Jakub Hrozek | 1 | -3/+3 | |
2010-10-18 | Use unsigned long for conversion to id_t | Jakub Hrozek | 1 | -4/+4 | |
We used strtol() on a number of places to convert into uid_t or gid_t from a string representation such as LDAP attribute, but on some platforms, unsigned long might be necessary to store big id_t values. This patch converts to using strtoul() instead. | |||||
2010-06-14 | Check closedir call in find_uid | Jakub Hrozek | 1 | -4/+9 | |
Fixes: #503 | |||||
2010-06-14 | get_uid_from_pid should use fstat rather than lstat | Jakub Hrozek | 1 | -11/+11 | |
Fixes: #541 | |||||
2010-06-10 | Fix misuse of errno in find_uid.c | Stephen Gallagher | 1 | -17/+26 | |
2010-06-10 | Properly handle read() and write() throughout the SSSD | Stephen Gallagher | 1 | -4/+9 | |
We need to guarantee at all times that reads and writes complete successfully. This means that they must be checked for returning EINTR and EAGAIN, and all writes must be wrapped in a loop to ensure that they do not truncate their output. | |||||
2010-02-18 | Rename server/ directory to src/ | Stephen Gallagher | 1 | -0/+296 | |
Also update BUILD.txt |