1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-02 00:22:11 +03:00

Moved and renamed DFS error constants from include/rpc_dfs.h to doserr.h to

fit in with new error reporting subsystem.
This commit is contained in:
Tim Potter
-
parent e101e945b7
commit dbfd50d447
2 changed files with 17 additions and 16 deletions

View File

@ -158,4 +158,16 @@
#define WERR_PRINTER_DRIVER_IN_USE W_ERROR(3001)
#define WERR_STATUS_MORE_ENTRIES W_ERROR(0x0105)
/* DFS errors */
#ifndef NERR_BASE
#define NERR_BASE (2100)
#endif
#define WERR_DFS_NO_SUCH_VOL W_ERROR(NERR_BASE+562)
#define WERR_DFS_NO_SUCH_SHARE W_ERROR(NERR_BASE+565)
#define WERR_DFS_NO_SUCH_SERVER W_ERROR(NERR_BASE+573)
#define WERR_DFS_INTERNAL_ERROR W_ERROR(NERR_BASE+590)
#define WERR_DFS_CANT_CREATE_JUNCT W_ERROR(NERR_BASE+569)
#endif /* _DOSERR_H */