diff src/deltasearch.cpp @ 46:b2a7f2e0926a

more fixes for 64 bit format
author carl
date Sat, 12 Jan 2008 15:20:53 -0800
parents f6db1f060a95
children 3cb02cb1e6cd
line wrap: on
line diff
--- a/src/deltasearch.cpp	Tue Jan 08 16:33:23 2008 -0800
+++ b/src/deltasearch.cpp	Sat Jan 12 15:20:53 2008 -0800
@@ -57,14 +57,14 @@
 		off_t size = st.st_size;
 		unsigned char buf[size];
 		size_t s = read(fd, buf, size);
-		_pst_debug_hexdump(stdout, buf, s, 16, 0);
+		pst_debug_hexdumper(stdout, buf, s, 16, 0);
 		cout << endl;
 		cout << endl;
 		cout << " dump decrypted data " << endl;
 		for (off_t i=0; i<size; i++) {
 			buf[i] = comp_enc[buf[i]];
 		}
-		_pst_debug_hexdump(stdout, buf, s, 16, 0);
+		pst_debug_hexdumper(stdout, buf, s, 16, 0);
 		close(fd);
 	}
 	return 0;