summaryrefslogtreecommitdiffstats
path: root/src/providers/krb5
diff options
context:
space:
mode:
authorJakub Hrozek <jhrozek@redhat.com>2014-11-29 22:23:38 +0100
committerJakub Hrozek <jhrozek@redhat.com>2014-12-03 11:09:33 +0100
commit8e44ddfccebe61728d8a2c1dafce36dfa944bc90 (patch)
tree4416023bfd484b6a09ca04110fec2880cfd811d6 /src/providers/krb5
parent75afab247bc9d1a27dce0b1a4b1ca6ebe106b887 (diff)
downloadsssd-8e44ddfccebe61728d8a2c1dafce36dfa944bc90.tar.gz
sssd-8e44ddfccebe61728d8a2c1dafce36dfa944bc90.tar.xz
sssd-8e44ddfccebe61728d8a2c1dafce36dfa944bc90.zip
sss_atomic_write_s() return value is signed
Reviewed-by: Sumit Bose <sbose@redhat.com>
Diffstat (limited to 'src/providers/krb5')
-rw-r--r--src/providers/krb5/krb5_child.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/providers/krb5/krb5_child.c b/src/providers/krb5/krb5_child.c
index e16620891..6b722acd8 100644
--- a/src/providers/krb5/krb5_child.c
+++ b/src/providers/krb5/krb5_child.c
@@ -708,7 +708,7 @@ static errno_t k5c_attach_ccname_msg(struct krb5_req *kr)
static errno_t k5c_send_data(struct krb5_req *kr, int fd, errno_t error)
{
- size_t written;
+ ssize_t written;
uint8_t *buf;
size_t len;
int ret;