diff options
author | Tilman Keskinoz <arved@FreeBSD.org> | 2013-06-11 08:42:15 +0000 |
---|---|---|
committer | Tilman Keskinoz <arved@FreeBSD.org> | 2013-06-11 08:42:15 +0000 |
commit | 3279c626da0eee11901ef3f32343b5a610273368 (patch) | |
tree | 0e2505ceb0fd6bede2f1e4869b18dbd15e65c136 /security/steghide | |
parent | 55cd3804fa2b7654b02d51e6c60b4b12db88008c (diff) |
Notes
Diffstat (limited to 'security/steghide')
-rw-r--r-- | security/steghide/files/patch-MHashPP.cc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/security/steghide/files/patch-MHashPP.cc b/security/steghide/files/patch-MHashPP.cc new file mode 100644 index 000000000000..d9c90f2d613e --- /dev/null +++ b/security/steghide/files/patch-MHashPP.cc @@ -0,0 +1,11 @@ +--- src/MHashPP.cc.orig 2013-06-11 10:25:36.000000000 +0200 ++++ src/MHashPP.cc 2013-06-11 10:29:34.000000000 +0200 +@@ -121,7 +121,7 @@ + + std::string MHashPP::getAlgorithmName (hashid id) + { +- char *name = mhash_get_hash_name (id) ; ++ char *name = reinterpret_cast<char *>(mhash_get_hash_name (id)) ; + std::string retval ; + if (name == NULL) { + retval = std::string ("<algorithm not found>") ; |