From e1755ea8fa80127d1448326140e7245d439d023f Mon Sep 17 00:00:00 2001 From: miod <> Date: Tue, 8 Jul 2014 20:24:50 +0000 Subject: Match the current state of the code. --- src/lib/libssl/src/doc/crypto/BUF_MEM_new.pod | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/lib') diff --git a/src/lib/libssl/src/doc/crypto/BUF_MEM_new.pod b/src/lib/libssl/src/doc/crypto/BUF_MEM_new.pod index 52f47caa40..b761859086 100644 --- a/src/lib/libssl/src/doc/crypto/BUF_MEM_new.pod +++ b/src/lib/libssl/src/doc/crypto/BUF_MEM_new.pod @@ -13,7 +13,7 @@ character arrays structure void BUF_MEM_free(BUF_MEM *a); - int BUF_MEM_grow(BUF_MEM *str, int len); + int BUF_MEM_grow(BUF_MEM *str, size_t len); char * BUF_strdup(const char *str); @@ -26,9 +26,9 @@ The library uses the BUF_MEM structure defined in buffer.h: typedef struct buf_mem_st { - int length; /* current number of bytes */ + size_t length; /* current number of bytes */ char *data; - int max; /* size of buffer */ + size_t max; /* size of buffer */ } BUF_MEM; B is the current size of the buffer in bytes, B is the amount of -- cgit v1.2.3-55-g6feb