aboutsummaryrefslogtreecommitdiff
path: root/crypto/comp
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>1999-04-17 21:25:43 +0000
committerBen Laurie <ben@openssl.org>1999-04-17 21:25:43 +0000
commite778802f53c8d47e96a6e4cbc776eb6e1d4c461a (patch)
tree719d4dd0fc69b355c6d8329af1f90b2c4f603548 /crypto/comp
parentd77b3054cd87c2b13fa0169931f74b8e0dac5252 (diff)
downloadopenssl-e778802f53c8d47e96a6e4cbc776eb6e1d4c461a.zip
openssl-e778802f53c8d47e96a6e4cbc776eb6e1d4c461a.tar.gz
openssl-e778802f53c8d47e96a6e4cbc776eb6e1d4c461a.tar.bz2
Massive constification.
Diffstat (limited to 'crypto/comp')
-rw-r--r--crypto/comp/comp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/comp/comp.h b/crypto/comp/comp.h
index 00af062..0b86084 100644
--- a/crypto/comp/comp.h
+++ b/crypto/comp/comp.h
@@ -11,7 +11,7 @@ extern "C" {
typedef struct comp_method_st
{
int type; /* NID for compression library */
- char *name; /* A text string to identify the library */
+ const char *name; /* A text string to identify the library */
int (*init)();
void (*finish)();
int (*compress)();