diff options
author | Kamen Mazdrashki <kamen.mazdrashki@postpath.com> | 2009-09-17 23:18:40 +0300 |
---|---|---|
committer | Anatoliy Atanasov <anatoliy.atanasov@postpath.com> | 2009-09-30 15:48:40 +0300 |
commit | 0e64fcb18f22f31b9004e43f701ea109cef6075d (patch) | |
tree | 11ae9ea33466156957db9b531e17e1742af9e1cb /libcli | |
parent | e66911390005f377196d49dffb06cd4ae25ddc5f (diff) | |
download | samba-0e64fcb18f22f31b9004e43f701ea109cef6075d.tar.gz samba-0e64fcb18f22f31b9004e43f701ea109cef6075d.tar.xz samba-0e64fcb18f22f31b9004e43f701ea109cef6075d.zip |
w32err: FRS_ group of errors replaced with numeric values
Signed-off-by: Anatoliy Atanasov <anatoliy.atanasov@postpath.com>
Diffstat (limited to 'libcli')
-rw-r--r-- | libcli/util/werror.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libcli/util/werror.h b/libcli/util/werror.h index 5529c1d77a0..c04ffd8031e 100644 --- a/libcli/util/werror.h +++ b/libcli/util/werror.h @@ -292,9 +292,9 @@ typedef uint32_t WERROR; #define WERR_DS_DUP_MSDS_INTID W_ERROR(0x00002195) /* FRS errors */ -#define WERR_FRS_INSUFFICIENT_PRIV W_ERROR(FRS_ERR_BASE+7) -#define WERR_FRS_SYSVOL_IS_BUSY W_ERROR(FRS_ERR_BASE+15) -#define WERR_FRS_INVALID_SERVICE_PARAMETER W_ERROR(FRS_ERR_BASE+17) +#define WERR_FRS_INSUFFICIENT_PRIV W_ERROR(0x00001F47) +#define WERR_FRS_SYSVOL_IS_BUSY W_ERROR(0x00001F4F) +#define WERR_FRS_INVALID_SERVICE_PARAMETER W_ERROR(0x00001F51) /* RPC/COM/OLE HRESULT error codes */ /* RPC errors */ |