s3-libads: Map LDAP_TIMELIMIT_EXCEEDED as NT_STATUS_IO_TIMEOUT
authorAndrew Bartlett <abartlet@samba.org>
Fri, 18 May 2012 07:38:48 +0000 (17:38 +1000)
committerKarolin Seeger <kseeger@samba.org>
Mon, 28 May 2012 19:27:23 +0000 (21:27 +0200)
This allows Samba to then handle this error in the same way it would for RPC connections

Andrew Bartlett

source3/libads/ads_status.c

index 6680766f23f51f8c2435c292b0e3288e6c6a8236..392e82f160530522f82e1b3a684ae596d0937585 100644 (file)
@@ -79,6 +79,9 @@ NTSTATUS ads_ntstatus(ADS_STATUS status)
                if (status.err.rc == LDAP_SUCCESS) {
                        return NT_STATUS_OK;
                }
+               if (status.err.rc == LDAP_TIMELIMIT_EXCEEDED) {
+                       return NT_STATUS_IO_TIMEOUT;
+               }
                return NT_STATUS_LDAP(status.err.rc);
 #endif
 #ifdef HAVE_KRB5