diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2007-07-24 15:23:16 +0000 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2007-07-24 15:23:16 +0000 |
commit | 48a06d1a7bab2e7ce657cda43f4361bf35a248be (patch) | |
tree | 5bc8dceb32808c89247e9776b15902e3bc14282d /lib | |
parent | 813a1107f465197c984ee807f69f916ebfefa212 (diff) |
Removed unused variable.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/qssl.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/qssl.c b/lib/qssl.c index 9e2aee767..0e5ccba29 100644 --- a/lib/qssl.c +++ b/lib/qssl.c @@ -40,9 +40,6 @@ #include "memdebug.h" -static bool qsossl_inited = FALSE; - - int Curl_qsossl_init(void) { @@ -157,7 +154,7 @@ static CURLcode Curl_qsossl_create(struct connectdata * conn, int sockindex) static int Curl_qsossl_trap_cert(SSLHandle * h) { - return 1; /* Accept certificate. */ + return 1; /* Accept certificate. */ } |