From 0ee8aa5c5dd92a58db0c58159a24d07684432f0e Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 8 Sep 2010 15:13:45 -0700 Subject: Fix warnings caused by double ";;" at the end of the time_mono() fixes. --- source3/lib/smbldap.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3/lib') diff --git a/source3/lib/smbldap.c b/source3/lib/smbldap.c index 67e3d4dc1b..6a97b60803 100644 --- a/source3/lib/smbldap.c +++ b/source3/lib/smbldap.c @@ -1550,7 +1550,7 @@ int smbldap_modify(struct smbldap_state *ldap_state, const char *dn, LDAPMod *at int rc = LDAP_SERVER_DOWN; int attempts = 0; char *utf8_dn; - time_t endtime = time_mono(NULL)+lp_ldap_timeout();; + time_t endtime = time_mono(NULL)+lp_ldap_timeout(); size_t converted_size; SMB_ASSERT(ldap_state); @@ -1594,7 +1594,7 @@ int smbldap_add(struct smbldap_state *ldap_state, const char *dn, LDAPMod *attrs int rc = LDAP_SERVER_DOWN; int attempts = 0; char *utf8_dn; - time_t endtime = time_mono(NULL)+lp_ldap_timeout();; + time_t endtime = time_mono(NULL)+lp_ldap_timeout(); size_t converted_size; SMB_ASSERT(ldap_state); @@ -1638,7 +1638,7 @@ int smbldap_delete(struct smbldap_state *ldap_state, const char *dn) int rc = LDAP_SERVER_DOWN; int attempts = 0; char *utf8_dn; - time_t endtime = time_mono(NULL)+lp_ldap_timeout();; + time_t endtime = time_mono(NULL)+lp_ldap_timeout(); size_t converted_size; SMB_ASSERT(ldap_state); -- cgit