diff options
author | Christof Schmitt <cs@samba.org> | 2016-01-07 13:27:49 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2016-01-13 03:35:57 +0100 |
commit | 6f3656c47d8ae6a3ac10591ffd7a60797775b469 (patch) | |
tree | e0d6bdd29786bd59d9a08816c90164cda68dfeb8 | |
parent | aa3883eae6e7891efb1e6f9ec74e6073bee43250 (diff) | |
download | samba-6f3656c47d8ae6a3ac10591ffd7a60797775b469.tar.gz |
Revert "winbind: Retry after SESSION_EXPIRED error in ping-dc"
This reverts commit a2670f15dea27c10e3827216adf572f9c3894f85.
BUG: https://bugzilla.samba.org/show_bug.cgi?id=11670
cm_connect_netlogon now handles the retry for an expired session.
Signed-off-by: Christof Schmitt <cs@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Autobuild-User(master): Jeremy Allison <jra@samba.org>
Autobuild-Date(master): Wed Jan 13 03:35:57 CET 2016 on sn-devel-144
-rw-r--r-- | source3/winbindd/winbindd_dual_srv.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/source3/winbindd/winbindd_dual_srv.c b/source3/winbindd/winbindd_dual_srv.c index 44e4842ec22..cdd9bbd6168 100644 --- a/source3/winbindd/winbindd_dual_srv.c +++ b/source3/winbindd/winbindd_dual_srv.c @@ -741,14 +741,6 @@ NTSTATUS _wbint_PingDc(struct pipes_struct *p, struct wbint_PingDc *r) reconnect: status = cm_connect_netlogon(domain, &netlogon_pipe); - if (NT_STATUS_EQUAL(status, NT_STATUS_NETWORK_SESSION_EXPIRED)) { - /* - * Retry to open new connection with new kerberos ticket. - */ - invalidate_cm_connection(domain); - status = cm_connect_netlogon(domain, &netlogon_pipe); - } - reset_cm_connection_on_error(domain, status); if (!NT_STATUS_IS_OK(status)) { DEBUG(3, ("could not open handle to NETLOGON pipe: %s\n", |