summaryrefslogtreecommitdiffstats
path: root/src/providers/ldap/sdap_async_connection.c
diff options
context:
space:
mode:
authorLukas Slebodnik <lslebodn@redhat.com>2013-04-03 14:06:16 +0200
committerJakub Hrozek <jhrozek@redhat.com>2013-04-04 23:06:55 +0200
commit369626f19a9083be643c796691798e2debf2f07b (patch)
treedb0c979440c2d44995bad98fc9fe2bbb35aef4fc /src/providers/ldap/sdap_async_connection.c
parent44fc7e53b403d45576ab61d2dea4608e323ed332 (diff)
downloadsssd-369626f19a9083be643c796691798e2debf2f07b.tar.gz
sssd-369626f19a9083be643c796691798e2debf2f07b.tar.xz
sssd-369626f19a9083be643c796691798e2debf2f07b.zip
LDAP: Fix value initialization warnings
Diffstat (limited to 'src/providers/ldap/sdap_async_connection.c')
-rw-r--r--src/providers/ldap/sdap_async_connection.c2
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 b05edf6f9..f77d03805 100644
--- a/src/providers/ldap/sdap_async_connection.c
+++ b/src/providers/ldap/sdap_async_connection.c
@@ -1542,7 +1542,7 @@ static void sdap_cli_kinit_done(struct tevent_req *subreq)
struct tevent_req);
struct sdap_cli_connect_state *state = tevent_req_data(req,
struct sdap_cli_connect_state);
- time_t expire_time;
+ time_t expire_time = 0;
errno_t ret;
ret = sdap_kinit_recv(subreq, &expire_time);