diff options
author | Ben Laurie <ben@openssl.org> | 1999-04-17 23:25:43 +0200 |
---|---|---|
committer | Ben Laurie <ben@openssl.org> | 1999-04-17 23:25:43 +0200 |
commit | e778802f53c8d47e96a6e4cbc776eb6e1d4c461a (patch) | |
tree | 719d4dd0fc69b355c6d8329af1f90b2c4f603548 /crypto/buffer/buffer.h | |
parent | Add support for VISIBLESTRING and UTF8String (diff) | |
download | openssl-e778802f53c8d47e96a6e4cbc776eb6e1d4c461a.tar.xz openssl-e778802f53c8d47e96a6e4cbc776eb6e1d4c461a.zip |
Massive constification.
Diffstat (limited to 'crypto/buffer/buffer.h')
-rw-r--r-- | crypto/buffer/buffer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/buffer/buffer.h b/crypto/buffer/buffer.h index 6d6da3d186..20184bed15 100644 --- a/crypto/buffer/buffer.h +++ b/crypto/buffer/buffer.h @@ -74,7 +74,7 @@ typedef struct buf_mem_st BUF_MEM *BUF_MEM_new(void); void BUF_MEM_free(BUF_MEM *a); int BUF_MEM_grow(BUF_MEM *str, int len); -char * BUF_strdup(char *str); +char * BUF_strdup(const char *str); void ERR_load_BUF_strings(void ); |