Skip to content

Commit

Permalink
re #4 - use (cffi:null-pointer) instead of 0 in call to ssl-ctx-ctrl
Browse files Browse the repository at this point in the history
  • Loading branch information
avodonosov committed Apr 20, 2014
1 parent 9f26e20 commit bbad1b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ffi.lisp
Expand Up @@ -458,7 +458,7 @@ will use this value.")
(rand-seed ptr length))))

(defun ssl-ctx-set-session-cache-mode (ctx mode)
(ssl-ctx-ctrl ctx +SSL_CTRL_SET_SESS_CACHE_MODE+ mode 0))
(ssl-ctx-ctrl ctx +SSL_CTRL_SET_SESS_CACHE_MODE+ mode (cffi:null-pointer)))

(defvar *locks*)
(defconstant +CRYPTO-LOCK+ 1)
Expand Down

0 comments on commit bbad1b2

Please sign in to comment.