summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2016-07-30 15:33:52 +0200
committerJo-Philipp Wich <jo@mein.io>2016-07-30 15:33:52 +0200
commitc444957f5589049932f62cb901669ceb86ba48c1 (patch)
tree1e7f07b5b31fab1f09ae43b4b0d0167a6a598816
parent4fdad31fd199ef97b078f6355463d64ce598e85e (diff)
downloaduclient-c444957f5589049932f62cb901669ceb86ba48c1.tar.gz
Make missing SSL support message more explicit.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
-rw-r--r--uclient-fetch.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/uclient-fetch.c b/uclient-fetch.c
index 6b6d2fe..3c0c36b 100644
--- a/uclient-fetch.c
+++ b/uclient-fetch.c
@@ -487,7 +487,12 @@ static void init_ustream_ssl(void)
static int no_ssl(const char *progname)
{
- fprintf(stderr, "%s: SSL support not available, please install ustream-ssl\n", progname);
+ fprintf(stderr,
+ "%s: SSL support not available, please install one of the "
+ "libustream-ssl-* libraries as well as the ca-bundle and ",
+ "ca-certificates packages.\n",
+ progname);
+
return 1;
}