summaryrefslogtreecommitdiffstats
path: root/source/smbd/negprot.c
diff options
context:
space:
mode:
authorJames Peach <jpeach@samba.org>2007-06-15 21:58:49 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:23:23 -0500
commit171dc060e2a576d724eed1ca65636bdafffd7713 (patch)
tree375e2af5050a3f27901bfd32de41e86710e6a2f1 /source/smbd/negprot.c
parent24b0cbcb3741dd14b04728448a85cc04a057e7d0 (diff)
downloadsamba-171dc060e2a576d724eed1ca65636bdafffd7713.tar.gz
samba-171dc060e2a576d724eed1ca65636bdafffd7713.tar.xz
samba-171dc060e2a576d724eed1ca65636bdafffd7713.zip
r23510: Tidy calls to smb_panic by removing trailing newlines. Print the
failed expression in SMB_ASSERT.
Diffstat (limited to 'source/smbd/negprot.c')
-rw-r--r--source/smbd/negprot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/negprot.c b/source/smbd/negprot.c
index 92c392b3666..3fdae1e06b8 100644
--- a/source/smbd/negprot.c
+++ b/source/smbd/negprot.c
@@ -43,7 +43,7 @@ static void get_challenge(char buff[8])
DEBUG(10, ("get challenge: creating negprot_global_auth_context\n"));
if (!NT_STATUS_IS_OK(nt_status = make_auth_context_subsystem(&negprot_global_auth_context))) {
DEBUG(0, ("make_auth_context_subsystem returned %s", nt_errstr(nt_status)));
- smb_panic("cannot make_negprot_global_auth_context!\n");
+ smb_panic("cannot make_negprot_global_auth_context!");
}
DEBUG(10, ("get challenge: getting challenge\n"));
cryptkey = negprot_global_auth_context->get_ntlm_challenge(negprot_global_auth_context);