aboutsummaryrefslogtreecommitdiffstats
path: root/packet-nfs.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2000-08-03 19:27:19 +0000
committerGuy Harris <guy@alum.mit.edu>2000-08-03 19:27:19 +0000
commit4793e45e750e0fac11fcb1cbf2b804fe226dd1e6 (patch)
tree25c8317054758187ae98d72efc8cda901c17d074 /packet-nfs.c
parenta3e7190456e494901c48fedcf49a727524f042e7 (diff)
Add some error values that, whilst they're not in the NFS V2 spec, are,
as I remember, issued by some NFS V2 servers (EXDEV, for one, can almost certainly be issued by most V2 servers). svn path=/trunk/; revision=2201
Diffstat (limited to 'packet-nfs.c')
-rw-r--r--packet-nfs.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/packet-nfs.c b/packet-nfs.c
index ec6c77a449..8f53a97207 100644
--- a/packet-nfs.c
+++ b/packet-nfs.c
@@ -2,7 +2,7 @@
* Routines for nfs dissection
* Copyright 1999, Uwe Girlich <Uwe.Girlich@philosys.de>
*
- * $Id: packet-nfs.c,v 1.31 2000/07/13 13:09:25 girlich Exp $
+ * $Id: packet-nfs.c,v 1.32 2000/08/03 19:27:19 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -571,12 +571,17 @@ const value_string names_nfs_stat[] =
{ 6, "ERR_NX_IO" },
{ 13, "ERR_ACCES" },
{ 17, "ERR_EXIST" },
+ { 18, "ERR_XDEV" }, /* not in spec, but can happen */
{ 19, "ERR_NODEV" },
{ 20, "ERR_NOTDIR" },
{ 21, "ERR_ISDIR" },
+ { 22, "ERR_INVAL" }, /* not in spec, but I think it can happen */
+ { 26, "ERR_TXTBSY" }, /* not in spec, but I think it can happen */
{ 27, "ERR_FBIG" },
{ 28, "ERR_NOSPC" },
{ 30, "ERR_ROFS" },
+ { 31, "ERR_MLINK" }, /* not in spec, but can happen */
+ { 45, "ERR_OPNOTSUPP" }, /* not in spec, but I think it can happen */
{ 63, "ERR_NAMETOOLONG" },
{ 66, "ERR_NOTEMPTY" },
{ 69, "ERR_DQUOT" },