summaryrefslogtreecommitdiff
path: root/sss_client/passwd.c
AgeCommit message (Collapse)AuthorFilesLines
2009-08-24Catch possible bad input passed in by glibcSimo Sorce1-0/+9
Seen in tests and was leading to a segfault
2009-06-02Fix nasty bug in rendering the password fieldSimo Sorce1-2/+1
An error introduced with the last tidyup patches would skip the first char of the password field.
2009-05-28Standardize style and fix potential lenght checkSimo Sorce1-28/+47
We were not subtracting the initial 8 bytes from slen. This could cause us to run past the source buffer in case we received a bad packet.
2009-03-10Treat uids and gids as 32 bit numbers not 64Simo Sorce1-11/+11
In the nss communication protocol we were treating uids and gids as 64 bit values, but uids and gids are really u32 values, change the protocol to reflect the real size.
2009-02-24Add PAM clientSumit Bose1-0/+346
Also rename nss_client to sss_client and reuse the same pipe protocol for both the NSS and PAM client libraries. Signed-off-by: Simo Sorce <ssorce@redhat.com>