diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2006-11-11 22:05:33 +0000 | 
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2006-11-11 22:05:33 +0000 | 
| commit | e1ac99af1f1c2ba5fadca296df9585200951eefb (patch) | |
| tree | 08b5e9d6de16fc4b955d48d328412e5dd3da9a30 | |
| parent | be0d17e812053bddd99e1d330c429399f17aee44 (diff) | |
fix header to match actual proto
| -rw-r--r-- | lib/ssluse.h | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/lib/ssluse.h b/lib/ssluse.h index d33ac3878..05238f0eb 100644 --- a/lib/ssluse.h +++ b/lib/ssluse.h @@ -52,10 +52,10 @@ struct curl_slist *Curl_ossl_engines_list(struct SessionHandle *data);  int Curl_ossl_init(void);  void Curl_ossl_cleanup(void); -int Curl_ossl_send(struct connectdata *conn, -                   int sockindex, -                   void *mem, -                   size_t len); +ssize_t Curl_ossl_send(struct connectdata *conn, +                       int sockindex, +                       void *mem, +                       size_t len);  ssize_t Curl_ossl_recv(struct connectdata *conn, /* connection data */                         int num,                  /* socketindex */                         char *buf,                /* store read data here */ | 
