summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorcarsten <>2008-06-03 13:02:07 +0000
committercarsten <>2008-06-03 13:02:07 +0000
commit8c9606c87dddd1ad12214209d883cd24d01ea359 (patch)
tree80ca6d239feabff97ef67106a1f65ececacd7637 /src
parent60fde85b647fcc006b67d0a6a8f5e185dd6b66eb (diff)
Do not automatically open from an guessed path
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.";