s4-auth: fixed formatting of some DEBUG() lines
authorAndrew Tridgell <tridge@samba.org>
Wed, 5 Oct 2011 06:07:51 +0000 (17:07 +1100)
committerAndrew Tridgell <tridge@samba.org>
Wed, 5 Oct 2011 07:45:15 +0000 (09:45 +0200)
Autobuild-User: Andrew Tridgell <tridge@samba.org>
Autobuild-Date: Wed Oct  5 09:45:15 CEST 2011 on sn-devel-104

source4/auth/credentials/credentials_secrets.c

index 86e31f4c8b2a858c27239b69d2ed0eff8de6f608..d86032a5648ed86a464efbb6aad787896fe6af57 100644 (file)
@@ -209,7 +209,7 @@ _PUBLIC_ NTSTATUS cli_credentials_set_machine_account(struct cli_credentials *cr
                                             SECRETS_PRIMARY_DOMAIN_DN,
                                             filter, &error_string);
        if (!NT_STATUS_IS_OK(status)) {
-               DEBUG(1, ("Could not find machine account in secrets database: %s: %s", nt_errstr(status), error_string));
+               DEBUG(1, ("Could not find machine account in secrets database: %s: %s\n", nt_errstr(status), error_string));
                talloc_free(error_string);
        }
        return status;
@@ -238,7 +238,7 @@ NTSTATUS cli_credentials_set_krbtgt(struct cli_credentials *cred,
                                             SECRETS_PRINCIPALS_DN,
                                             filter, &error_string);
        if (!NT_STATUS_IS_OK(status)) {
-               DEBUG(1, ("Could not find krbtgt (master Kerberos) account in secrets database: %s: %s", nt_errstr(status), error_string));
+               DEBUG(1, ("Could not find krbtgt (master Kerberos) account in secrets database: %s: %s\n", nt_errstr(status), error_string));
                talloc_free(error_string);
        }
        return status;
@@ -269,7 +269,7 @@ _PUBLIC_ NTSTATUS cli_credentials_set_stored_principal(struct cli_credentials *c
                                             SECRETS_PRINCIPALS_DN, filter,
                                             &error_string);
        if (!NT_STATUS_IS_OK(status)) {
-               DEBUG(1, ("Could not find %s principal in secrets database: %s: %s", serviceprincipal, nt_errstr(status), error_string));
+               DEBUG(1, ("Could not find %s principal in secrets database: %s: %s\n", serviceprincipal, nt_errstr(status), error_string));
        }
        return status;
 }