From c0e20861d537730e7c5078d2f2cddda3e5a689fe Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Wed, 16 Aug 2017 09:10:39 -0400 Subject: [PATCH] pull: mention libcurl in NOT_SUPPORTED pull path Since it's now possible to build without libsoup but still have HTTP functionality. Closes: #1082 Approved by: cgwalters --- src/libostree/ostree-repo-pull.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libostree/ostree-repo-pull.c b/src/libostree/ostree-repo-pull.c index 337190ce..e21342fe 100644 --- a/src/libostree/ostree-repo-pull.c +++ b/src/libostree/ostree-repo-pull.c @@ -5662,7 +5662,7 @@ ostree_repo_pull_with_options (OstreeRepo *self, GError **error) { g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED, - "This version of ostree was built without libsoup, and cannot fetch over HTTP"); + "This version of ostree was built without libsoup or libcurl, and cannot fetch over HTTP"); return FALSE; } @@ -5676,7 +5676,7 @@ ostree_repo_remote_fetch_summary_with_options (OstreeRepo *self, GError **error) { g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED, - "This version of ostree was built without libsoup, and cannot fetch over HTTP"); + "This version of ostree was built without libsoup or libcurl, and cannot fetch over HTTP"); return FALSE; }