summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2008-07-02 15:13:01 +0200
committerVolker Lendecke <vl@samba.org>2008-07-02 15:13:01 +0200
commit7207b41a5e6a7cbf2b598775d831560e1b70cc93 (patch)
tree5c7e90832b21613e607cbc693eec0a56de80cbe8 /source3
parente467fae948ffa2dd67aa38f51dd79612d508dffb (diff)
downloadsamba-7207b41a5e6a7cbf2b598775d831560e1b70cc93.tar.gz
samba-7207b41a5e6a7cbf2b598775d831560e1b70cc93.tar.bz2
samba-7207b41a5e6a7cbf2b598775d831560e1b70cc93.zip
Tiny logic simplification: Remove an unnecessary else branch
(This used to be commit 6009ae329375b1c40e3d00df977ddccc8b5cc176)
Diffstat (limited to 'source3')
-rw-r--r--source3/winbindd/idmap_ad.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/source3/winbindd/idmap_ad.c b/source3/winbindd/idmap_ad.c
index 2e79413ffc..b99da57a4a 100644
--- a/source3/winbindd/idmap_ad.c
+++ b/source3/winbindd/idmap_ad.c
@@ -77,15 +77,15 @@ static ADS_STRUCT *ad_idmap_cached_connection_internal(void)
if ( ads->config.realm && (expire > time(NULL))) {
return ads;
- } else {
- /* we own this ADS_STRUCT so make sure it goes away */
- DEBUG(7,("Deleting expired krb5 credential cache\n"));
- ads->is_mine = True;
- ads_destroy( &ads );
- ads_kdestroy(WINBIND_CCACHE_NAME);
- ad_idmap_ads = NULL;
- TALLOC_FREE( ad_schema );
}
+
+ /* we own this ADS_STRUCT so make sure it goes away */
+ DEBUG(7,("Deleting expired krb5 credential cache\n"));
+ ads->is_mine = True;
+ ads_destroy( &ads );
+ ads_kdestroy(WINBIND_CCACHE_NAME);
+ ad_idmap_ads = NULL;
+ TALLOC_FREE( ad_schema );
}
if (!local) {