summaryrefslogtreecommitdiff
path: root/des-compat.h
diff options
context:
space:
mode:
authorNiels Möller <nisse@lysator.liu.se>2010-07-05 21:53:00 +0200
committerNiels Möller <nisse@lysator.liu.se>2010-07-05 21:53:00 +0200
commit05a0279a195b6fa1d8ed5c00482b0292c474af5b (patch)
tree91a746292faec98a7832ea71e65cce9284507334 /des-compat.h
parent3c2b83bf3f2240ec2bdc089060d71109d2b9b128 (diff)
downloadnettle-05a0279a195b6fa1d8ed5c00482b0292c474af5b.tar.gz
Comment fix.
Rev: nettle/des-compat.h:1.2
Diffstat (limited to 'des-compat.h')
-rw-r--r--des-compat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/des-compat.h b/des-compat.h
index d005a7ed..8aab3bc4 100644
--- a/des-compat.h
+++ b/des-compat.h
@@ -75,7 +75,7 @@ typedef uint8_t des_cblock[DES_BLOCK_SIZE];
foo(const_des_cblock src, des_cblock dst), letting argument arrays
"decay" into pointers of type uint8_t * and const uint8_t *.
- But since openssl's prototypes use *pointers const_des_cblock *src,
+ But since openssl's prototypes use *pointers* const_des_cblock *src,
des_cblock *dst, this ends up in type conflicts, and the workaround
is to not use const at all.
*/