aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-11-05 08:40:55 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-11-05 08:40:55 +0000
commitbb362a80598efbd7093799abc0ff2a7689e3cf5b (patch)
tree70d24b67337a3875d8c6b05110e3ff165ff12090 /epan/dissectors
parent005f86cde7cd7dd618d76f022f95a850cd9cde00 (diff)
From J. Bruce Fields via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9383
Incorrect FATTR4_SECURITY_LABEL value We got this constant wrong. See http://tools.ietf.org/html/draft-ietf-nfsv4-minorversion2-dot-x-19 and http://marc.info/?l=linux-nfs&m=138359828516861&w=2 svn path=/trunk/; revision=53086
Diffstat (limited to 'epan/dissectors')
-rw-r--r--epan/dissectors/packet-nfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-nfs.c b/epan/dissectors/packet-nfs.c
index 6f7e1fe541..36dbf12f07 100644
--- a/epan/dissectors/packet-nfs.c
+++ b/epan/dissectors/packet-nfs.c
@@ -6961,7 +6961,7 @@ static const value_string fattr4_names[] = {
{ FATTR4_SUPPATTR_EXCLCREAT, "Suppattr_ExclCreat" },
#define FATTR4_FS_CHARSET_CAP 76
{ FATTR4_FS_CHARSET_CAP, "FS_Charset_Cap" },
-#define FATTR4_SECURITY_LABEL 81
+#define FATTR4_SECURITY_LABEL 80
{ FATTR4_SECURITY_LABEL, "Security_Label" },
{ 0, NULL }
};