r21314: add more usefull debug output
authorStefan Metzmacher <metze@samba.org>
Tue, 13 Feb 2007 13:14:14 +0000 (13:14 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 19:48:08 +0000 (14:48 -0500)
metze
(This used to be commit a246e4bbaaab6f98f50a3c28b47d2c541af7b44a)

source4/auth/credentials/credentials_files.c

index 006f242de9075765e16a75d6a4420a6522b8f639..2978fe16f8a9d1cd234a5c7976dd177a5f2528a1 100644 (file)
@@ -226,15 +226,15 @@ NTSTATUS cli_credentials_set_secrets(struct cli_credentials *cred,
                               &msgs, attrs,
                               "%s", filter);
        if (ldb_ret == 0) {
-               DEBUG(1, ("Could not find entry to match filter: %s\n",
-                         filter));
+               DEBUG(1, ("Could not find entry to match filter: '%s' base: '%s'\n",
+                         filter, base));
                /* set anonymous as the fallback, if the machine account won't work */
                cli_credentials_set_anonymous(cred);
                talloc_free(mem_ctx);
                return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
        } else if (ldb_ret != 1) {
-               DEBUG(1, ("Found more than one (%d) entry to match filter: %s\n",
-                         ldb_ret, filter));
+               DEBUG(1, ("Found more than one (%d) entry to match filter: '%s' base: '%s'\n",
+                         ldb_ret, filter, base));
                /* set anonymous as the fallback, if the machine account won't work */
                cli_credentials_set_anonymous(cred);
                talloc_free(mem_ctx);
@@ -247,8 +247,8 @@ NTSTATUS cli_credentials_set_secrets(struct cli_credentials *cred,
        machine_account = ldb_msg_find_attr_as_string(msgs[0], "samAccountName", NULL);
 
        if (!machine_account) {
-               DEBUG(1, ("Could not find 'samAccountName' in join record to domain: %s\n",
-                         cli_credentials_get_domain(cred)));
+               DEBUG(1, ("Could not find 'samAccountName' in join record to domain: %s: filter: '%s' base: '%s'\n",
+                         cli_credentials_get_domain(cred), filter, base));
                /* set anonymous as the fallback, if the machine account won't work */
                cli_credentials_set_anonymous(cred);
                talloc_free(mem_ctx);