diff options
author | Jim McDonough <jmcd@samba.org> | 2002-11-21 00:58:50 +0000 |
---|---|---|
committer | Jim McDonough <jmcd@samba.org> | 2002-11-21 00:58:50 +0000 |
commit | 3e1846d0deeb49589aa69ca5af58d80a31d486a2 (patch) | |
tree | aafe4cf5a4a989cf46bc225148f9903c54b322b5 /source3/libsmb/nterr.c | |
parent | e955763315700af82b23bbfd2777cbecad47f7e7 (diff) | |
download | samba-3e1846d0deeb49589aa69ca5af58d80a31d486a2.tar.gz samba-3e1846d0deeb49589aa69ca5af58d80a31d486a2.tar.bz2 samba-3e1846d0deeb49589aa69ca5af58d80a31d486a2.zip |
get_nt_error_msg from APPLIANCE_HEAD is called nt_errstr in HEAD. This should fix the build.
(This used to be commit 929874d2744509bba743d99b9c707e7626845fa0)
Diffstat (limited to 'source3/libsmb/nterr.c')
-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); } /***************************************************************************** |