On Mon, Aug 6, 2018 at 3:07 PM, Ben Pfaff <[email protected]> wrote: > On Mon, Aug 06, 2018 at 02:54:12PM -0700, Darrell Ball wrote: > > 10 of the travis builds are failing such as > > TESTSUITE=1 KERNEL=3.16.54 for gcc and clang. > > > > Fixes: ab16d2c2871b ("stream-ssl: Don't enable new TLS versions by > default") > > CC: Timothy Redaelli <[email protected]> > > Signed-off-by: Darrell Ball <[email protected]> > > --- > > lib/stream-ssl.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/lib/stream-ssl.c b/lib/stream-ssl.c > > index f3d623c..0d5e0de 100644 > > --- a/lib/stream-ssl.c > > +++ b/lib/stream-ssl.c > > @@ -1188,7 +1188,7 @@ stream_ssl_set_protocols(const char *arg) > > } > > > > /* Start with all the flags off and turn them on as requested. */ > > - long protocol_flags = SSL_OP_NO_SSL_MASK; > > + long protocol_flags = 0; > > > > char *s = xstrdup(arg); > > char *save_ptr = NULL; > > I believe that this defeats the purpose of the original patch. >
True, it was really meant as a revert. > How about this: > https://patchwork.ozlabs.org/patch/954255/ I'll take a look _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
