diff options
author | Günther Deschner <gd@samba.org> | 2011-03-03 00:06:13 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-03-04 01:18:42 +0100 |
commit | 199809b3cc51109aca9b8f2c4f21bd5bf69d36c5 (patch) | |
tree | 59465580b7a173db0e87af84811eb02112593412 /source4/libcli/util | |
parent | 45710a05c5daccc3f1b2127ce24a87850fc42e33 (diff) | |
download | samba-199809b3cc51109aca9b8f2c4f21bd5bf69d36c5.tar.gz samba-199809b3cc51109aca9b8f2c4f21bd5bf69d36c5.tar.bz2 samba-199809b3cc51109aca9b8f2c4f21bd5bf69d36c5.zip |
nterr: make sure both nt_err_desc structs are the same.
Guenther
Diffstat (limited to 'source4/libcli/util')
-rw-r--r-- | source4/libcli/util/nterr.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source4/libcli/util/nterr.c b/source4/libcli/util/nterr.c index 82354dba26..d854d7d142 100644 --- a/source4/libcli/util/nterr.c +++ b/source4/libcli/util/nterr.c @@ -795,6 +795,8 @@ static const nt_err_code_struct nt_err_desc[] = { N_("Duplicate name on network"), NT_STATUS_DUPLICATE_NAME }, { N_("Print queue is full"), NT_STATUS_PRINT_QUEUE_FULL }, { N_("No print spool space available"), NT_STATUS_NO_SPOOL_SPACE }, + { N_("The network name cannot be found"), NT_STATUS_BAD_NETWORK_NAME }, + { N_("The connection was refused"), NT_STATUS_CONNECTION_REFUSED }, { N_("Too many names"), NT_STATUS_TOO_MANY_NAMES }, { N_("Too many sessions"), NT_STATUS_TOO_MANY_SESSIONS }, { N_("Invalid server state"), NT_STATUS_INVALID_SERVER_STATE }, @@ -835,6 +837,7 @@ static const nt_err_code_struct nt_err_desc[] = { N_("Insufficient logon information"), NT_STATUS_INSUFFICIENT_LOGON_INFO }, { N_("License quota exceeded"), NT_STATUS_LICENSE_QUOTA_EXCEEDED }, + { N_("No more files"), STATUS_NO_MORE_FILES }, { NULL, NT_STATUS(0) } }; |