summaryrefslogtreecommitdiff
path: root/security/steghide/files/patch-src-aufile.cc
diff options
context:
space:
mode:
authorTilman Keskinoz <arved@FreeBSD.org>2003-10-23 14:25:16 +0000
committerTilman Keskinoz <arved@FreeBSD.org>2003-10-23 14:25:16 +0000
commita2f328dedde101e04cd0d0ce62028b23d939062a (patch)
tree40f5268dd8e473158e6208ea0965ee2dae5a9d20 /security/steghide/files/patch-src-aufile.cc
parent- Install documentation (both included text files and the manual available (diff)
Update to 0.5.1
Notes
Notes: svn path=/head/; revision=91962
Diffstat (limited to 'security/steghide/files/patch-src-aufile.cc')
-rw-r--r--security/steghide/files/patch-src-aufile.cc34
1 files changed, 0 insertions, 34 deletions
diff --git a/security/steghide/files/patch-src-aufile.cc b/security/steghide/files/patch-src-aufile.cc
deleted file mode 100644
index 330561d3a3ad..000000000000
--- a/security/steghide/files/patch-src-aufile.cc
+++ /dev/null
@@ -1,34 +0,0 @@
---- src/aufile.cc.orig Thu Sep 26 22:51:50 2002
-+++ src/aufile.cc Thu Sep 26 22:54:09 2002
-@@ -23,6 +23,7 @@
- #include <cstdlib>
- #include <cstring>
- #include <vector>
-+#include <string>
-
- #include <libintl.h>
- #define _(S) gettext (S)
-@@ -51,12 +52,12 @@
- {
- }
-
--vector<unsigned char> AuFile::getData (void)
-+std::vector<unsigned char> AuFile::getData (void)
- {
- return data ;
- }
-
--void AuFile::setData (vector<unsigned char> d)
-+void AuFile::setData (std::vector<unsigned char> d)
- {
- data = d ;
- }
-@@ -236,7 +237,7 @@
- void AuFile::writedata (void)
- {
- try {
-- for (vector<unsigned char>::iterator i = data.begin() ; i != data.end() ; i++) {
-+ for (std::vector<unsigned char>::iterator i = data.begin() ; i != data.end() ; i++) {
- getBinIO()->write8 (*i) ;
- }
- }