diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-06-16 13:00:09 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-06-17 17:08:59 +1000 |
commit | 1233ba7bf3d2dfd9a84eb52d601e589411c55185 (patch) | |
tree | 7288be923353c2b884fc6120b6ead219843b2faa /source3/libsmb/nterr.c | |
parent | d2bc45e7ffb4e8d47878a6fc53c5f5c90dfd2114 (diff) | |
download | samba-1233ba7bf3d2dfd9a84eb52d601e589411c55185.tar.gz samba-1233ba7bf3d2dfd9a84eb52d601e589411c55185.tar.bz2 samba-1233ba7bf3d2dfd9a84eb52d601e589411c55185.zip |
libclu/util: Move get_friendly_nt_error_msg() in common.
Andrew Bartlett
Signed-off-by: Andrew Tridgell <tridge@samba.org>
Diffstat (limited to 'source3/libsmb/nterr.c')
-rw-r--r-- | source3/libsmb/nterr.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/source3/libsmb/nterr.c b/source3/libsmb/nterr.c index 7d0b3d08fd..a4a388303d 100644 --- a/source3/libsmb/nterr.c +++ b/source3/libsmb/nterr.c @@ -55,23 +55,3 @@ const char *nt_errstr(NTSTATUS nt_code) return result; } -/************************************************************************ - Print friendler version fo NT error code - ***********************************************************************/ - -const char *get_friendly_nt_error_msg(NTSTATUS nt_code) -{ - int idx = 0; - - while (nt_err_desc[idx].nt_errstr != NULL) { - if (NT_STATUS_V(nt_err_desc[idx].nt_errcode) == NT_STATUS_V(nt_code)) { - return nt_err_desc[idx].nt_errstr; - } - idx++; - } - - /* fall back to NT_STATUS_XXX string */ - - return nt_errstr(nt_code); -} - |