diff options
author | Günther Deschner <gd@samba.org> | 2007-12-18 13:38:14 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2007-12-19 11:15:29 +0100 |
commit | 713e1536fe4914e6df11cf10316d0b1c7c3685a3 (patch) | |
tree | f55f52d97063f381b4a70091e9cae8b6193642b9 | |
parent | d0cd32e2c8630faead556f0efa9e348ae67f3b4d (diff) | |
download | samba-713e1536fe4914e6df11cf10316d0b1c7c3685a3.tar.gz samba-713e1536fe4914e6df11cf10316d0b1c7c3685a3.tar.bz2 samba-713e1536fe4914e6df11cf10316d0b1c7c3685a3.zip |
Merge WERR_NO_SUCH_LOGON_SESSION from Samba4.
Guenther
(This used to be commit 7b528647879bb55c9c85243a3e2906c09490edc9)
-rw-r--r-- | source3/include/doserr.h | 1 | ||||
-rw-r--r-- | source3/libsmb/doserr.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/source3/include/doserr.h b/source3/include/doserr.h index a22eda2ab7..079a5664dd 100644 --- a/source3/include/doserr.h +++ b/source3/include/doserr.h @@ -204,6 +204,7 @@ #define WERR_SERVICE_NEVER_STARTED W_ERROR(1077) #define WERR_MACHINE_LOCKED W_ERROR(1271) #define WERR_NO_LOGON_SERVERS W_ERROR(1311) +#define WERR_NO_SUCH_LOGON_SESSION W_ERROR(1312) #define WERR_LOGON_FAILURE W_ERROR(1326) #define WERR_NO_SUCH_DOMAIN W_ERROR(1355) #define WERR_INVALID_SECURITY_DESCRIPTOR W_ERROR(1338) diff --git a/source3/libsmb/doserr.c b/source3/libsmb/doserr.c index 84cc898187..5bdd85da1b 100644 --- a/source3/libsmb/doserr.c +++ b/source3/libsmb/doserr.c @@ -60,6 +60,7 @@ werror_code_struct dos_errs[] = { "WERR_DEST_NOT_FOUND", WERR_DEST_NOT_FOUND }, { "WERR_NOT_LOCAL_DOMAIN", WERR_NOT_LOCAL_DOMAIN }, { "WERR_NO_LOGON_SERVERS", WERR_NO_LOGON_SERVERS }, + { "WERR_NO_SUCH_LOGON_SESSION", WERR_NO_SUCH_LOGON_SESSION }, { "WERR_PRINTER_DRIVER_IN_USE", WERR_PRINTER_DRIVER_IN_USE }, { "WERR_STATUS_MORE_ENTRIES ", WERR_STATUS_MORE_ENTRIES }, { "WERR_DFS_NO_SUCH_VOL", WERR_DFS_NO_SUCH_VOL }, |