summaryrefslogtreecommitdiffstats
path: root/source/smbd/negprot.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-03-17 04:36:35 +0000
committerTim Potter <tpot@samba.org>2002-03-17 04:36:35 +0000
commit1f007d3ed41c1b71a89fa6be7d173e67e927c302 (patch)
tree9cd2ab121ad45ab2029fb9ca8e83ce9407ce6300 /source/smbd/negprot.c
parent7ba235c0fb4755092605743d575357602fd1ce05 (diff)
downloadsamba-1f007d3ed41c1b71a89fa6be7d173e67e927c302.tar.gz
samba-1f007d3ed41c1b71a89fa6be7d173e67e927c302.tar.xz
samba-1f007d3ed41c1b71a89fa6be7d173e67e927c302.zip
Renamed get_nt_error_msg() to nt_errstr().
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 f4ed360845e..18682e6c9ff 100644
--- a/source/smbd/negprot.c
+++ b/source/smbd/negprot.c
@@ -41,7 +41,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", get_nt_error_msg(nt_status)));
+ DEBUG(0, ("make_auth_context_subsystem returned %s", nt_errstr(nt_status)));
smb_panic("cannot make_negprot_global_auth_context!\n");
}
DEBUG(10, ("get challenge: getting challenge\n"));