diff options
Diffstat (limited to 'security/steghide/files/patch-src-cvrstgfile.cc')
-rw-r--r-- | security/steghide/files/patch-src-cvrstgfile.cc | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/security/steghide/files/patch-src-cvrstgfile.cc b/security/steghide/files/patch-src-cvrstgfile.cc deleted file mode 100644 index a498a1a75feb..000000000000 --- a/security/steghide/files/patch-src-cvrstgfile.cc +++ /dev/null @@ -1,30 +0,0 @@ ---- src/cvrstgfile.cc.orig Thu Sep 26 21:57:20 2002 -+++ src/cvrstgfile.cc Thu Sep 26 22:06:43 2002 -@@ -20,7 +20,8 @@ - - #include <stdio.h> - #include <stdlib.h> --#include <string.h> -+#include <string> -+#include <vector> - #include <assert.h> - - #include <libintl.h> -@@ -106,7 +107,7 @@ - } - - /* 'creates' a stego file from a cover file */ --void CvrStgFile::transform (string stgfn) -+void CvrStgFile::transform (std::string stgfn) - { - delete getBinIO() ; - setBinIO (new BinaryIO (stgfn, BinaryIO::WRITE)) ; -@@ -144,7 +145,7 @@ - return retval ; - } - --CvrStgFile* CvrStgFile::readfile (string fn) -+CvrStgFile* CvrStgFile::readfile (std::string fn) - { - BinaryIO *BinIO = new BinaryIO (fn, BinaryIO::READ) ; - |