summaryrefslogtreecommitdiff
path: root/tools/common.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/common.c')
-rw-r--r--tools/common.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/tools/common.c b/tools/common.c
index b4b5de4..39a20a7 100644
--- a/tools/common.c
+++ b/tools/common.c
@@ -213,14 +213,18 @@ static void init_connection_info(struct amqp_connection_info *ci) {
}
#endif
}
+ }
#if WITH_SSL
- if (amqp_ssl && !ci->ssl) {
+ if (amqp_ssl && !ci->ssl) {
+ if (amqp_url) {
die("the --ssl option specifies an SSL connection"
" but the --url option does not");
+ } else {
+ ci->ssl = 1;
}
-#endif
}
+#endif
if (amqp_port >= 0) {
if (amqp_url) {