summaryrefslogtreecommitdiffstats
path: root/apps/rsa.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2000-11-06 23:16:04 +0000
committerRichard Levitte <levitte@openssl.org>2000-11-06 23:16:04 +0000
commit5e4ca4220edd68c895a8a4bc6b8a187551e95ebc (patch)
tree0d9412df6a98fd5a2280e50253dd9b934e781b9b /apps/rsa.c
parente5828cd46f0217427e2232ebb80511827bfe7d15 (diff)
The consequence of constification is that to pass the address to a
pointer to a const double pointe parameter, the pointer must point to const data as well.
Diffstat (limited to 'apps/rsa.c')
-rw-r--r--apps/rsa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/rsa.c b/apps/rsa.c
index 700df4223e..825d925c66 100644
--- a/apps/rsa.c
+++ b/apps/rsa.c
@@ -265,7 +265,7 @@ bad:
else if (informat == FORMAT_NETSCAPE)
{
BUF_MEM *buf=NULL;
- unsigned char *p;
+ const unsigned char *p;
int size=0;
buf=BUF_MEM_new();