summaryrefslogtreecommitdiff
path: root/source3/libsmb/nterr.c
diff options
context:
space:
mode:
authorJim McDonough <jmcd@samba.org>2002-11-21 01:01:58 +0000
committerJim McDonough <jmcd@samba.org>2002-11-21 01:01:58 +0000
commit5939005588f9e0518793cd85e1e78082cb90b11d (patch)
treee0c14adced741d5571c0b0af01fb8bce36f2600f /source3/libsmb/nterr.c
parent8713f45a06cf242749e2ccb460d0d15c682350bb (diff)
downloadsamba-5939005588f9e0518793cd85e1e78082cb90b11d.tar.gz
samba-5939005588f9e0518793cd85e1e78082cb90b11d.tar.bz2
samba-5939005588f9e0518793cd85e1e78082cb90b11d.zip
get_nt_error_msg from APPLIANCE_HEAD is called nt_errstr in HEAD. This should fix the build.
(This used to be commit a89187ccc95cc54e39518413bd4fff92c7223108)
Diffstat (limited to 'source3/libsmb/nterr.c')
-rw-r--r--source3/libsmb/nterr.c2
1 files changed, 1 insertions, 1 deletions
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);
}
/*****************************************************************************