diff options
author | Richard Sharpe <sharpe@ns.aus.com> | 2001-01-29 08:14:42 +0000 |
---|---|---|
committer | Richard Sharpe <sharpe@ns.aus.com> | 2001-01-29 08:14:42 +0000 |
commit | 82d18e3d1a60635ab8b4a916a2496889c013d656 (patch) | |
tree | 4cc4e4505a05c94e91019bfea9a278faafef541b /packet-smb.c | |
parent | defc02babb1e5544d976c1da87469aebaaf47f24 (diff) | |
download | wireshark-82d18e3d1a60635ab8b4a916a2496889c013d656.tar.gz wireshark-82d18e3d1a60635ab8b4a916a2496889c013d656.tar.bz2 wireshark-82d18e3d1a60635ab8b4a916a2496889c013d656.zip |
Added a new error code I just found ... no such share.
svn path=/trunk/; revision=2956
Diffstat (limited to 'packet-smb.c')
-rw-r--r-- | packet-smb.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packet-smb.c b/packet-smb.c index b8e34f41af..c20ad9190e 100644 --- a/packet-smb.c +++ b/packet-smb.c @@ -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??"}, |