r6229: Back out these changes ...
authorRichard Sharpe <sharpe@samba.org>
Wed, 6 Apr 2005 23:22:52 +0000 (23:22 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:11:28 +0000 (13:11 -0500)
(This used to be commit 321fbae51267153102e47845736f2c3a5abfe0be)

source4/librpc/rpc/dcerpc_schannel.c
source4/ntvfs/posix/pvfs_search.c

index a98ed50b9a457bd3ca88cb296f7fbf860a4f2ea3..3ae2624ff9df208b407b138cc76b027c1406f1a5 100644 (file)
@@ -162,21 +162,7 @@ NTSTATUS dcerpc_bind_auth_schannel(TALLOC_CTX *tmp_ctx,
                DEBUG(1, ("Failed to setup credentials for account %s: %s\n",
                          cli_credentials_get_username(credentials), 
                          nt_errstr(status)));
-               /*
-                * If we get back NT_STATUS_ACCESS_DENIED and we asked for
-                * DCERPC_SCHANNEL_128, then try again without
-                */
-               if (NT_STATUS_EQUAL(status, NT_STATUS_ACCESS_DENIED) &&
-                   p->conn->flags & DCERPC_SCHANNEL_128) {
-                       DEBUG(1, ("Retrying to setup credentials without DCERPC_SCHANNEL_128\n"));
-                       p->conn->flags &= ~DCERPC_SCHANNEL_128;
-                       status = dcerpc_schannel_key(tmp_ctx, 
-                                                    p, credentials,
-                                                    chan_type);
-               }
-               if (!NT_STATUS_IS_OK(status)) {
-                       return status;
-               }
+               return status;
        }
 
        return dcerpc_bind_auth_password(p, uuid, version, 
index 965e9ac266c766fecfbedad6c684dffbd2a0a67f..69ca6ef997018e6095dc1fe3b148be57e65f1690 100644 (file)
@@ -266,7 +266,7 @@ static NTSTATUS pvfs_search_fill(struct pvfs_state *pvfs, TALLOC_CTX *mem_ctx,
                talloc_free(file);
        }
 
-       /*pvfs_list_hibernate(dir);*/
+       pvfs_list_hibernate(dir);
 
        return NT_STATUS_OK;
 }