diff options
-rw-r--r-- | source3/include/doserr.h | 3 | ||||
-rw-r--r-- | source3/libsmb/doserr.c | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/source3/include/doserr.h b/source3/include/doserr.h index b027ba4f9b..c455f7a3c9 100644 --- a/source3/include/doserr.h +++ b/source3/include/doserr.h @@ -235,6 +235,9 @@ #define WERR_DEVICE_NOT_AVAILABLE W_ERROR(4319) #define WERR_STATUS_MORE_ENTRIES W_ERROR(0x0105) +#define WERR_DS_DRA_BAD_DN W_ERROR(8439) +#define WERR_DS_DRA_BAD_NC W_ERROR(8440) + #define WERR_PRINTER_DRIVER_ALREADY_INSTALLED W_ERROR(ERRdriveralreadyinstalled) #define WERR_UNKNOWN_PORT W_ERROR(ERRunknownprinterport) #define WERR_UNKNOWN_PRINTER_DRIVER W_ERROR(ERRunknownprinterdriver) diff --git a/source3/libsmb/doserr.c b/source3/libsmb/doserr.c index 12999e7d80..bbb12e0a29 100644 --- a/source3/libsmb/doserr.c +++ b/source3/libsmb/doserr.c @@ -118,6 +118,8 @@ werror_code_struct dos_errs[] = { "WERR_PASSWORD_MUST_CHANGE", WERR_PASSWORD_MUST_CHANGE }, { "WERR_DOMAIN_CONTROLLER_NOT_FOUND", WERR_DOMAIN_CONTROLLER_NOT_FOUND }, { "WERR_ACCOUNT_LOCKED_OUT", WERR_ACCOUNT_LOCKED_OUT }, + { "WERR_DS_DRA_BAD_DN", WERR_DS_DRA_BAD_DN }, + { "WERR_DS_DRA_BAD_NC", WERR_DS_DRA_BAD_NC }, { NULL, W_ERROR(0) } }; @@ -145,6 +147,8 @@ werror_str_struct dos_err_strs[] = { { WERR_NONE_MAPPED, "Could not map names to SIDs" }, { WERR_NO_SUCH_USER, "No such User" }, { WERR_GROUP_EXISTS, "Group already exists" }, + { WERR_DS_DRA_BAD_DN, "An invalid distinguished name was specified for this replication" }, + { WERR_DS_DRA_BAD_NC, "An invalid naming context was specified for this replication operation" }, }; /***************************************************************************** |