Lines Matching refs:pcmd
889 static int ssl_conf_cmd_skip_prefix(SSL_CONF_CTX *cctx, const char **pcmd)
891 if (pcmd == NULL || *pcmd == NULL)
895 if (strlen(*pcmd) <= cctx->prefixlen)
897 if (cctx->flags & SSL_CONF_FLAG_CMDLINE && strncmp(*pcmd, cctx->prefix, cctx->prefixlen))
899 if (cctx->flags & SSL_CONF_FLAG_FILE && OPENSSL_strncasecmp(*pcmd, cctx->prefix, cctx->prefixlen))
901 *pcmd += cctx->prefixlen;
903 if (**pcmd != '-' || !(*pcmd)[1])
905 *pcmd += 1;