# HG changeset patch # User Paul Aurich # Date 1309914737 25200 # Node ID b3a0d23e5b204f472ca3b84d09d61844ace1807f # Parent 708d396957903140a81ca8091e5b0c025c04d3d8 ssl: Add a missing call to setciphers() diff -r 708d39695790 -r b3a0d23e5b20 src/ssl.lua --- a/src/ssl.lua Sun Jul 03 13:13:36 2011 -0700 +++ b/src/ssl.lua Tue Jul 05 18:12:17 2011 -0700 @@ -68,6 +68,9 @@ -- Set SSL options succ, msg = optexec(context.setoptions, cfg.options, ctx) if not succ then return nil, msg end + -- Set SSL ciphers + succ, msg = optexec(context.setcipher, cfg.ciphers, ctx) + if not succ then return nil, msg end -- Set the depth for certificate verification if cfg.depth then succ, msg = context.setdepth(ctx, cfg.depth)