diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-06-16 23:52:08 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2016-06-17 15:50:42 +0200 |
commit | aeb4e8a13a936394728f3cf6bd53b9ea015dcc4a (patch) | |
tree | cfa2290a97eb2fc2171f7979e1d40a4d05105176 | |
parent | c7756befee78d84665619dd97b77395a56dedd85 (diff) | |
download | VeraCrypt-aeb4e8a13a936394728f3cf6bd53b9ea015dcc4a.tar.gz VeraCrypt-aeb4e8a13a936394728f3cf6bd53b9ea015dcc4a.zip |
Windows: make Camellia help link open dedicated documentation page
-rw-r--r-- | src/Common/Dlgcode.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Common/Dlgcode.c b/src/Common/Dlgcode.c index 2beac6e2..1f6f5bd2 100644 --- a/src/Common/Dlgcode.c +++ b/src/Common/Dlgcode.c @@ -9989,6 +9989,10 @@ void Applink (char *dest, BOOL bSendOS, char *extraOutput) { StringCbCopyA (url, sizeof (url),"https://veracrypt.codeplex.com/wikipage?title=Twofish"); } + else if (strcmp(dest, "camellia") == 0) + { + StringCbCopyA (url, sizeof (url),"https://veracrypt.codeplex.com/wikipage?title=Camellia"); + } else if (strcmp(dest, "cascades") == 0) { StringCbCopyA (url, sizeof (url),"https://veracrypt.codeplex.com/wikipage?title=Cascades"); |