svn commit: samba r8115 - in branches/SAMBA_4_0/source: include libcli/util

tridge at samba.org tridge at samba.org
Mon Jul 4 05:01:22 GMT 2005


Author: tridge
Date: 2005-07-04 05:01:22 +0000 (Mon, 04 Jul 2005)
New Revision: 8115

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=8115

Log:
added support for 2 more dos error codes found during testing



Modified:
   branches/SAMBA_4_0/source/include/doserr.h
   branches/SAMBA_4_0/source/libcli/util/nterr.c


Changeset:
Modified: branches/SAMBA_4_0/source/include/doserr.h
===================================================================
--- branches/SAMBA_4_0/source/include/doserr.h	2005-07-04 04:20:34 UTC (rev 8114)
+++ branches/SAMBA_4_0/source/include/doserr.h	2005-07-04 05:01:22 UTC (rev 8115)
@@ -63,6 +63,8 @@
 #define ERRinvalidname 123 /* Invalid name */
 #define ERRunknownlevel 124
 #define ERRnotlocked 158 /* This region is not locked by this locking context. */
+#define ERRcancelviolation 173
+#define ERRnoatomiclocks 174
 #define ERRrename 183
 #define ERRbadpipe 230 /* Named pipe invalid */
 #define ERRpipebusy 231 /* All instances of pipe are busy */

Modified: branches/SAMBA_4_0/source/libcli/util/nterr.c
===================================================================
--- branches/SAMBA_4_0/source/libcli/util/nterr.c	2005-07-04 04:20:34 UTC (rev 8114)
+++ branches/SAMBA_4_0/source/libcli/util/nterr.c	2005-07-04 05:01:22 UTC (rev 8115)
@@ -575,6 +575,8 @@
 	DOS_CODE(ERRDOS, ERRinvalidname),
 	DOS_CODE(ERRDOS, ERRunknownlevel),
 	DOS_CODE(ERRDOS, ERRnotlocked),
+	DOS_CODE(ERRDOS, ERRcancelviolation),
+	DOS_CODE(ERRDOS, ERRnoatomiclocks),
 	DOS_CODE(ERRDOS, ERRrename),
 	DOS_CODE(ERRDOS, ERRbadpipe),
 	DOS_CODE(ERRDOS, ERRpipebusy),



More information about the samba-cvs mailing list