> > > @@ -1095,7 +1095,7 @@ hex_prin(BIO *out, unsigned char *buf, i
> > > static int
> > > set_pbe(BIO *err, int *ppbe, const char *str)
> > > {
> > > - if (!str)
> > > + if (str == NULL)
> > > return 0;
> > > if (!strcmp(str, "NONE")) {
> >
> > if (strcmp(str, "NONE") != 0) {
>
> Yes I would like to do this too, and I thought this should be "== 0"
>
> if (strcmp(str, "NONE") == 0) {Oh right. Sorry...
