Added a new error code I just found ... no such share.
authorsharpe <sharpe@f5534014-38df-0310-8fa8-9805f1628bb7>
Mon, 29 Jan 2001 08:14:42 +0000 (08:14 +0000)
committersharpe <sharpe@f5534014-38df-0310-8fa8-9805f1628bb7>
Mon, 29 Jan 2001 08:14:42 +0000 (08:14 +0000)
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2956 f5534014-38df-0310-8fa8-9805f1628bb7

packet-smb.c
smb.h

index b8e34f41af15673fc31a653e8abe6603cea9d9ae..c20ad9190ed7ec48b5031ca138ee91c722157cc7 100644 (file)
@@ -2,7 +2,7 @@
  * Routines for smb packet dissection
  * Copyright 1999, Richard Sharpe <rsharpe@ns.aus.com>
  *
- * $Id: packet-smb.c,v 1.78 2001/01/03 16:41:07 gram Exp $
+ * $Id: packet-smb.c,v 1.79 2001/01/29 08:14:41 sharpe Exp $
  *
  * Ethereal - Network traffic analyzer
  * By Gerald Combs <gerald@zing.org>
@@ -10478,6 +10478,7 @@ static const value_string DOS_errors[] = {
   {SMBE_badshare, "Share mode on file conflict with open mode"},
   {SMBE_lock, "Lock request conflicts with existing lock"},
   {SMBE_unsup, "Request unsupported, returned by Win 95"},
+  {SMBE_nosuchshare, "Requested share does not exist"},
   {SMBE_filexists, "File in operation already exists"},
   {SMBE_cannotopen, "Cannot open the file specified"},
   {SMBE_unknownlevel, "Unknown level??"},
diff --git a/smb.h b/smb.h
index 91373386ecc90ecea6367c6ed51089a84cbeacdc..71dc68a00e4643006d6bd3f13399fb6d7c70e436 100644 (file)
--- a/smb.h
+++ b/smb.h
@@ -2,7 +2,7 @@
  * Defines for smb packet dissection
  * Copyright 1999, Richard Sharpe <rsharpe@ns.aus.com>
  *
- * $Id: smb.h,v 1.5 2000/02/14 04:02:21 guy Exp $
+ * $Id: smb.h,v 1.6 2001/01/29 08:14:42 sharpe Exp $
  *
  * Ethereal - Network traffic analyzer
  * By Gerald Combs <gerald@zing.org>
 #define SMBE_badshare 32           /* Share mode on file conflict with open mode */
 #define SMBE_lock 33               /* Lock request conflicts with existing lock */
 #define SMBE_unsup 50              /* Request unsupported, returned by Win 95, RJS 20Jun98 */
+#define SMBE_nosuchshare 67        /* Share does not exits */
 #define SMBE_filexists 80          /* File in operation already exists */
 #define SMBE_cannotopen 110        /* Cannot open the file specified */
 #define SMBE_unknownlevel 124