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 /source4/libcli | |
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 'source4/libcli')
-rw-r--r-- | source4/libcli/util/nterr.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/source4/libcli/util/nterr.c b/source4/libcli/util/nterr.c index ea8c0fcd35..1532b5b787 100644 --- a/source4/libcli/util/nterr.c +++ b/source4/libcli/util/nterr.c @@ -52,23 +52,3 @@ const char *nt_errstr(NTSTATUS nt_code) return msg; } - -/************************************************************************ - 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); -} |