aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorJoão Valverde <j@v6e.pt>2023-02-06 10:36:41 +0000
committerJoão Valverde <j@v6e.pt>2023-02-06 15:52:10 +0000
commit02238edf92978091d114041a35c9db16604296d9 (patch)
tree24f3d9c3e2964db9307526221cb6d7c122f604a4 /doc
parent71cfbd81b33685eddde52fbaf12fd0ddced53f79 (diff)
Do not require using wsgcrypt.h
The reason to use wsgcrypt.h was to wrap it around DIAG_OFF() macros and that should no longer be necessary.
Diffstat (limited to 'doc')
-rw-r--r--doc/README.developer6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/README.developer b/doc/README.developer
index 317dfbaaca..69b0e8c32c 100644
--- a/doc/README.developer
+++ b/doc/README.developer
@@ -452,9 +452,9 @@ a MinGW toolchain, including MinGW-w64. The same concern applies to CMake
code. Depending on the particular situation you may need to use if(WIN32) or
if(MSVC) or if(MINGW).
-Wireshark uses Libgcrypt as general-purpose crypto library. To use it from
-your dissector, do not include gcrypt.h directly, but use the wrapper file
-wsutil/wsgcrypt.h instead.
+Wireshark uses Libgcrypt as general-purpose crypto library. Some Wireshark
+specific extensions are defined in wsutil/wsgcrypt.h. You might want to
+include that file instead.
2. String handling