summaryrefslogtreecommitdiffstats
path: root/libcli/util
Commit message (Collapse)AuthorAgeFilesLines
...
* util: use likely/unlikely for NT_STATUS_* macrosAndrew Tridgell2009-09-171-3/+3
|
* w32err: Set hex format values for all errorsKamen Mazdrashki2009-09-171-90/+90
| | | | Signed-off-by: Günther Deschner <gd@samba.org>
* w32err: Re-define errors with numeric valuesKamen Mazdrashki2009-09-171-46/+46
| | | | Signed-off-by: Günther Deschner <gd@samba.org>
* w32err: Sorting error codes in ascending orderKamen Mazdrashki2009-09-171-10/+8
| | | | Signed-off-by: Günther Deschner <gd@samba.org>
* w32err: NERR_ codes grouped togetherKamen Mazdrashki2009-09-171-9/+9
| | | | Signed-off-by: Günther Deschner <gd@samba.org>
* w32err: WERR_CLASS_NOT_REGISTERED updatedKamen Mazdrashki2009-09-172-2/+7
| | | | | | | Error code move to COM/OLE group. Error value changed to as REGDB_E_CLASSNOTREG in Windows Signed-off-by: Günther Deschner <gd@samba.org>
* s3-errors: add NT_STATUS_RPC_NT_PROCNUM_OUT_OF_RANGE.Günther Deschner2009-09-111-0/+1
| | | | Guenther
* s3-nterr: add NT_STATUS_RPC_NT_CALL_FAILED.Günther Deschner2009-09-081-0/+1
| | | | Guenther
* Adds new error codes (needed for enhancing error messages for SAMBA 4 AD ↵Matthias Dieter Wallnöfer2009-07-313-17/+82
| | | | LDAP server)
* doserrors: print out some more werrors.Günther Deschner2009-07-021-0/+5
| | | | Guenther
* two more NT status codes that we get on DRS with w2k8-R2Andrew Tridgell2009-06-121-1/+2
|
* add NT_STATUS_HAVE_NO_MEMORY_AND_FREE()Andrew Tridgell2009-06-041-0/+9
| | | | | | | | In many places we use NT_STATUS_HAVE_NO_MEMORY() to auto-return when a memory allocation fails. In quite a few places where we use this, we end up leaving a tmp_ctx behind, which creates a memory leak. This macro takes a memory context to free when returning the error
* errormap: Remove wbc -> NTSTATUS error map for now. It is not used.Jelmer Vernooij2009-05-151-6/+0
| | | | | | | This was breaking the Samba 4 installation since it added dependencies on header files we weren't installing. Confirmed with Kai.
* error-codes: add some more WERRORs to table.Günther Deschner2009-05-121-0/+2
| | | | | | These tables really should be auto-generated at some point... Guenther
* error-codes: add some more group specific windows error codes.Günther Deschner2009-05-052-0/+6
| | | | Guenther
* errormap: Add wbcErr to NTSTATUS mappingsKai Blin2009-04-221-0/+6
|
* error-codes: add WERR_CM_INVALID_POINTER.Günther Deschner2009-04-101-0/+1
| | | | Guenther
* error-codes: add some service related error codes.Günther Deschner2009-04-082-0/+6
| | | | | | Patch initially from: Danny Tylman <danny.tylman@insightix.com> Guenther
* s/NT_STATUS_WIN7_INVALID_RANGE/NT_STATUS_INVALID_LOCK_RANGE/gZach Loafman2009-04-011-2/+2
|
* error-codes: add WERR_DS_DRA_SOURCE_DISABLED.Günther Deschner2009-03-262-0/+2
| | | | Guenther
* error-codes: add WERR_DEVICE_NOT_CONNECTED.Günther Deschner2009-03-022-0/+2
| | | | Guenther
* libcli/util/werror.h: add macro W_ERROR_NOT_OK_GOTO(x, y)Michael Adam2009-02-261-0/+6
| | | | | | a goto destination can be specified as a second parameter. Michael
* s3: move definition of W_ERROR_NOT_OK_GOTO_DONE down to libcli/util/werror.hMichael Adam2009-02-261-0/+6
| | | | Michael
* error-codes: print out WERR_UNKNOWN_PRINT_MONITOR.Günther Deschner2009-02-241-0/+1
| | | | Guenther
* error-codes: add WERR_INVALID_USER_BUFFER.Günther Deschner2009-02-242-0/+2
| | | | Guenther
* s4 torture: Smbtorture additions for Windows BRLZack Kirsch2009-02-111-0/+3
| | | | | | - Adds a few new BRL tests to RAW-LOCK - Adds a "win7" target to allow torture to handle protocol changes in windows 7
* errors: add WERR_CM_BUFFER_SMALL.Günther Deschner2008-11-121-0/+1
| | | | Guenther
* nterrors: add NT_STATUS_DS_BUSY.Günther Deschner2008-11-101-0/+1
| | | | Guenther
* doserr: add WERR_NO_TRUST_SAM_ACCOUNT.Günther Deschner2008-11-062-0/+2
| | | | Guenther
* Remove use of global_loadparm when comparing nt status error - useJelmer Vernooij2008-11-021-0/+3
| | | | global variable instead.
* Use shared doserr.c.Jelmer Vernooij2008-11-012-0/+88
|
* Fix "parameter has incomplete type" build warning.Tim Prouty2008-10-231-7/+0
| | | | | | | | | | When libcli-util was moved to the top level (3be0f6ea56ed8e43cd287ed020e942efb675b87b) it introduced a build warning. Since ndr_map_error2ntstatus depends on the definition of enum ndr_err_code and libndr.h can't be easily included in error.h, I moved the definition of enum ndr_err_code to libndr.h. This also eliminates the need for the duplicate definition in proto.h
* Use common error definitions.Jelmer Vernooij2008-10-233-2300/+4
|
* Import NTSTATUS defines from Samba 3.Jelmer Vernooij2008-10-231-0/+682
|
* Import WERROR defines from Samba 3.Jelmer Vernooij2008-10-231-9/+57
|
* Import new DOS error codes from Samba 3.Jelmer Vernooij2008-10-231-0/+4
|
* Move libcli-util error code to top-level.Jelmer Vernooij2008-10-236-0/+2906