summaryrefslogtreecommitdiff
path: root/source3/lib/smbldap.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2010-09-08 15:13:45 -0700
committerJeremy Allison <jra@samba.org>2010-09-08 15:13:45 -0700
commit0ee8aa5c5dd92a58db0c58159a24d07684432f0e (patch)
treef2c00f7ff7c33e06b442b4de8e25c52dda2ca3e8 /source3/lib/smbldap.c
parent3fb5aba9cf59198dea3b43754dbe6b3ffb3ea474 (diff)
downloadsamba-0ee8aa5c5dd92a58db0c58159a24d07684432f0e.tar.gz
samba-0ee8aa5c5dd92a58db0c58159a24d07684432f0e.tar.bz2
samba-0ee8aa5c5dd92a58db0c58159a24d07684432f0e.zip
Fix warnings caused by double ";;" at the end of the time_mono() fixes.
Diffstat (limited to 'source3/lib/smbldap.c')
-rw-r--r--source3/lib/smbldap.c6
1 files changed, 3 insertions, 3 deletions
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);