aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2019-08-03 18:08:46 -0700
committerGuy Harris <guy@alum.mit.edu>2019-08-04 01:09:47 +0000
commit8ae710dbdc9a4a6e35ca5d7359343a735c428d4a (patch)
tree84d9d2e181068a883e478e2a99aca4fd6058cfa6
parentca432674b106bc6ad4c5de26a020afdd03821609 (diff)
Note the Microsoft standard, fix the LZNT1 comment.
Change-Id: I1e809aa09355a7e7235a41a903c6b4adf7df446a Reviewed-on: https://code.wireshark.org/review/34174 Reviewed-by: Guy Harris <guy@alum.mit.edu>
-rw-r--r--epan/tvbuff_lz77.c2
-rw-r--r--epan/tvbuff_lz77huff.c2
-rw-r--r--epan/tvbuff_lznt1.c4
3 files changed, 7 insertions, 1 deletions
diff --git a/epan/tvbuff_lz77.c b/epan/tvbuff_lz77.c
index e5dc3e1954..8bd43048c0 100644
--- a/epan/tvbuff_lz77.c
+++ b/epan/tvbuff_lz77.c
@@ -2,6 +2,8 @@
* Decompression code for Plain LZ77. This encoding is used by
* Microsoft in various file formats and protocols including SMB3.
*
+ * See MS-XCA.
+ *
* Copyright (C) 2019 Aurélien Aptel
*
* SPDX-License-Identifier: GPL-2.0-or-later
diff --git a/epan/tvbuff_lz77huff.c b/epan/tvbuff_lz77huff.c
index e5d228d11d..3448bfad29 100644
--- a/epan/tvbuff_lz77huff.c
+++ b/epan/tvbuff_lz77huff.c
@@ -2,6 +2,8 @@
* Decompression code for LZ77+Huffman. This encoding is used by
* Microsoft in various file formats and protocols including SMB3.
*
+ * See MS-XCA.
+ *
* Initial code from Samba re-licensed with Samuel's permission.
* Copyright (C) Samuel Cabrero 2017
*
diff --git a/epan/tvbuff_lznt1.c b/epan/tvbuff_lznt1.c
index e9650fc24e..9b40756b55 100644
--- a/epan/tvbuff_lznt1.c
+++ b/epan/tvbuff_lznt1.c
@@ -1,7 +1,9 @@
/*
- * Decompression code for LZ77+Huffman. This encoding is used by
+ * Decompression code for LZNT1. This encoding is used by
* Microsoft in various file formats and protocols including SMB3.
*
+ * See MS-XCA.
+ *
* Copyright (C) 2019 Aurélien Aptel
*
* Wireshark - Network traffic analyzer