diff options
author | Jim McDonough <jmcd@samba.org> | 2002-11-21 01:01:58 +0000 |
---|---|---|
committer | Jim McDonough <jmcd@samba.org> | 2002-11-21 01:01:58 +0000 |
commit | 5939005588f9e0518793cd85e1e78082cb90b11d (patch) | |
tree | e0c14adced741d5571c0b0af01fb8bce36f2600f | |
parent | 8713f45a06cf242749e2ccb460d0d15c682350bb (diff) | |
download | samba-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)
-rw-r--r-- | source3/libsmb/nterr.c | 2 |
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); } /***************************************************************************** |