Make missing SSL support message more explicit.
[project/uclient.git] / uclient-fetch.c
index 6b6d2fe..3c0c36b 100644 (file)
@@ -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;
 }