Commit bed27f4d authored by Dr. Stephen Henson's avatar Dr. Stephen Henson
Browse files

Fix argument processing.

(cherry picked from commit abf840e4)
parent 738a224b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -439,7 +439,7 @@ static int ssl_conf_cmd_skip_prefix(SSL_CONF_CTX *cctx, const char **pcmd)
		}
	else if (cctx->flags & SSL_CONF_FLAG_CMDLINE)
		{
		if (**pcmd != '-' || !*pcmd[1])
		if (**pcmd != '-' || !(*pcmd)[1])
			return 0;
		*pcmd += 1;
		}