From 5939005588f9e0518793cd85e1e78082cb90b11d Mon Sep 17 00:00:00 2001 From: Jim McDonough Date: Thu, 21 Nov 2002 01:01:58 +0000 Subject: get_nt_error_msg from APPLIANCE_HEAD is called nt_errstr in HEAD. This should fix the build. (This used to be commit a89187ccc95cc54e39518413bd4fff92c7223108) --- source3/libsmb/nterr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/libsmb/nterr.c b/source3/libsmb/nterr.c index 73d77b728a..89ad58b26f 100644 --- a/source3/libsmb/nterr.c +++ b/source3/libsmb/nterr.c @@ -607,7 +607,7 @@ char *get_friendly_nt_error_msg(NTSTATUS nt_code) /* fall back to NT_STATUS_XXX string */ - return get_nt_error_msg(nt_code); + return nt_errstr(nt_code); } /***************************************************************************** -- cgit