summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/decompress.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/decompress.c b/src/decompress.c
index 0efd82c..dea2bca 100644
--- a/src/decompress.c
+++ b/src/decompress.c
@@ -7,9 +7,9 @@
7#define HUGEBLOCK (1024*1024) 7#define HUGEBLOCK (1024*1024)
8 8
9int main(int argc, char **argv) { 9int main(int argc, char **argv) {
10 int infile = open("/Volumes/DasTelefonbuch/atb/phonebook.db", O_RDONLY); 10// int infile = open("/Volumes/DasTelefonbuch/atb/phonebook.db", O_RDONLY);
11 11
12// int infile = open( argv[1], O_RDONLY); 12 int infile = open( argv[1], O_RDONLY);
13 printf( "%i\n", infile ); 13 printf( "%i\n", infile );
14 14
15 unsigned const char xorkey [XORLEN] = "Just for Fun. Linus Torvalds."; 15 unsigned const char xorkey [XORLEN] = "Just for Fun. Linus Torvalds.";