From f3ae7b310724ae3555f573d38c9e3eea74aa53f1 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Thu, 4 Oct 2018 09:21:43 +0000 Subject: [PATCH] libxml++: secure url(s) in test --- Formula/libxml++.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/libxml++.rb b/Formula/libxml++.rb index b94ab3b469..ac3e66abef 100644 --- a/Formula/libxml++.rb +++ b/Formula/libxml++.rb @@ -1,6 +1,6 @@ class Libxmlxx < Formula desc "C++ wrapper for libxml" - homepage "https://libxmlplusplus.sourceforge.io" + homepage "https://libxmlplusplus.sourceforge.io/" url "https://download.gnome.org/sources/libxml++/2.40/libxml++-2.40.1.tar.xz" sha256 "4ad4abdd3258874f61c2e2a41d08e9930677976d303653cd1670d3e9f35463e9" @@ -32,7 +32,7 @@ class Libxmlxx < Formula int main(int argc, char *argv[]) { xmlpp::Document document; - document.set_internal_subset("homebrew", "", "http://www.brew.sh/xml/test.dtd"); + document.set_internal_subset("homebrew", "", "https://www.brew.sh/xml/test.dtd"); xmlpp::Element *rootnode = document.create_root_node("homebrew"); return 0; }