diff options
author | Ondrej Kos <okos@redhat.com> | 2013-03-27 11:22:40 +0100 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2013-03-27 13:55:26 +0100 |
commit | 2d75dbbc6549acb1f749b5366b492ae087fdc0d8 (patch) | |
tree | c306ecd9019b1fec96b92c7c550296a514bd1dd2 /src/providers | |
parent | 6ef7f6e81e2789d90e649bdf949836bd342559a7 (diff) | |
download | sssd-2d75dbbc6549acb1f749b5366b492ae087fdc0d8.tar.gz sssd-2d75dbbc6549acb1f749b5366b492ae087fdc0d8.tar.bz2 sssd-2d75dbbc6549acb1f749b5366b492ae087fdc0d8.zip |
LDAP: Fix value initialization
Diffstat (limited to 'src/providers')
-rw-r--r-- | src/providers/ldap/sdap_async_connection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/providers/ldap/sdap_async_connection.c b/src/providers/ldap/sdap_async_connection.c index d9ea4091..280268a1 100644 --- a/src/providers/ldap/sdap_async_connection.c +++ b/src/providers/ldap/sdap_async_connection.c @@ -1001,7 +1001,7 @@ static void sdap_kinit_done(struct tevent_req *subreq) int ret; int result; char *ccname = NULL; - time_t expire_time; + time_t expire_time = 0; krb5_error_code kerr; struct tevent_req *nextreq; |