summaryrefslogtreecommitdiff
path: root/task4.c
diff options
context:
space:
mode:
authorBenedict <benedict@0xb8000.de>2016-03-04 12:45:40 +0100
committerBenedict <benedict@0xb8000.de>2017-02-21 13:00:24 +0100
commit14e3b0e4f801f6fdbd6be941a2022e4e665d88eb (patch)
treee3707cc56c16aa8a38d85c3eb1947ba4188316e3 /task4.c
parent9db81cb91674d45bbb4936a098f4e4fb1a5b45bd (diff)
fxied api change in other tasks
Diffstat (limited to 'task4.c')
-rw-r--r--task4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/task4.c b/task4.c
index fe812ab..a1b7b28 100644
--- a/task4.c
+++ b/task4.c
@@ -29,7 +29,7 @@ void main() {
printf("line %i:\n", line_number);
for(j=0;j<length;j++) {
single_key = keys[j];
- xor_string(string2, &single_key, cleartext);
+ xor_string(string2, &single_key, cleartext, 1, 60);
printf("%s\n", cleartext);
}
}