aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--packet-smb.c4
-rw-r--r--smb.h6
2 files changed, 7 insertions, 3 deletions
diff --git a/packet-smb.c b/packet-smb.c
index 28090843df..8f145e75af 100644
--- a/packet-smb.c
+++ b/packet-smb.c
@@ -3,7 +3,7 @@
* Copyright 1999, Richard Sharpe <rsharpe@ns.aus.com>
* 2001 Rewrite by Ronnie Sahlberg and Guy Harris
*
- * $Id: packet-smb.c,v 1.216 2002/03/14 05:45:16 guy Exp $
+ * $Id: packet-smb.c,v 1.217 2002/03/15 04:46:42 tpot Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -12668,6 +12668,7 @@ const value_string DOS_errors[] = {
{SMBE_filexists, "File in operation already exists"},
{SMBE_cannotopen, "Cannot open the file specified"},
{SMBE_unknownlevel, "Unknown info level"},
+ {SMBE_invalidname, "Invalid name"},
{SMBE_badpipe, "Named pipe invalid"},
{SMBE_pipebusy, "All instances of pipe are busy"},
{SMBE_pipeclosing, "Named pipe close in progress"},
@@ -12687,6 +12688,7 @@ const value_string DOS_errors[] = {
{SMBE_invalidenvironment, "Invalid environment"},
{SMBE_printerdriverinuse, "Printer driver in use"},
{SMBE_invalidparam, "Invalid parameter"},
+ {SMBE_invalidformsize, "Invalid form size"},
{0, NULL}
};
diff --git a/smb.h b/smb.h
index 280cbb5caf..b3c009c5e8 100644
--- 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.33 2002/02/20 21:46:42 guy Exp $
+ * $Id: smb.h,v 1.34 2002/03/15 04:46:43 tpot Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -139,7 +139,8 @@
#define SMBE_invalidparam 87 /* Invalid parameter */
#define SMBE_cannotopen 110 /* Cannot open the file specified */
#define SMBE_insufficientbuffer 122/* Insufficient buffer size */
-#define SMBE_unknownlevel 124
+#define SMBE_invalidname 123 /* Invalid name */
+#define SMBE_unknownlevel 124 /* Unknown info level */
#define SMBE_alreadyexists 183 /* File already exists */
#define SMBE_badpipe 230 /* Named pipe invalid */
#define SMBE_pipebusy 231 /* All instances of pipe are busy */
@@ -160,6 +161,7 @@
#define SMBE_printeralreadyexists 1802 /* Printer already exists */
#define SMBE_invaliddatatype 1804 /* Invalid datatype */
#define SMBE_invalidenvironment 1805 /* Invalid environment */
+#define SMBE_invalidformsize 1903 /* Invalid form size */
#define SMBE_printerdriverinuse 3001 /* Printer driver in use */
/* Error codes for the ERRSRV class */