svn commit: samba r12910 - in branches/SAMBA_4_0/source/libcli/util: .

metze at samba.org metze at samba.org
Fri Jan 13 17:07:29 GMT 2006


Author: metze
Date: 2006-01-13 17:07:28 +0000 (Fri, 13 Jan 2006)
New Revision: 12910

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

Log:
fix bug #3069

metze
Modified:
   branches/SAMBA_4_0/source/libcli/util/errormap.c


Changeset:
Modified: branches/SAMBA_4_0/source/libcli/util/errormap.c
===================================================================
--- branches/SAMBA_4_0/source/libcli/util/errormap.c	2006-01-13 16:58:04 UTC (rev 12909)
+++ branches/SAMBA_4_0/source/libcli/util/errormap.c	2006-01-13 17:07:28 UTC (rev 12910)
@@ -1284,14 +1284,17 @@
 #ifdef ENOTSUP
 	{ ENOTSUP,      NT_STATUS_NOT_SUPPORTED},
 #endif
+#ifdef EOPNOTSUPP
+	{ EOPNOTSUPP,   NT_STATUS_NOT_SUPPORTED},
+#endif
 #ifdef EHOSTUNREACH
 	{ EHOSTUNREACH, NT_STATUS_HOST_UNREACHABLE },
 #endif
 #ifdef ENETUNREACH
-	{ ENETUNREACH, NT_STATUS_NETWORK_UNREACHABLE },
+	{ ENETUNREACH,  NT_STATUS_NETWORK_UNREACHABLE },
 #endif
 #ifdef ETIMEDOUT
-	{ ETIMEDOUT, NT_STATUS_IO_TIMEOUT },
+	{ ETIMEDOUT,    NT_STATUS_IO_TIMEOUT },
 #endif
 #ifdef EADDRINUSE
 	{ EADDRINUSE,   NT_STATUS_ADDRESS_ALREADY_ASSOCIATED },



More information about the samba-cvs mailing list