From ff6a20687dbf008d1ffafb4a01a9cd72a8045227 Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Thu, 11 May 2017 13:41:04 +0200 Subject: [PATCH] CPaster: Fix URLs for pastebin.ca Protocol switched to HTTPS recently. Task-number: QTCREATORBUG-18192 Change-Id: I467534142478f5511e645a2e959ad3422640a0a6 Reviewed-by: Friedemann Kleint --- src/plugins/cpaster/pastebindotcaprotocol.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/cpaster/pastebindotcaprotocol.cpp b/src/plugins/cpaster/pastebindotcaprotocol.cpp index aeb83d20d4e..b6fac76b6c1 100644 --- a/src/plugins/cpaster/pastebindotcaprotocol.cpp +++ b/src/plugins/cpaster/pastebindotcaprotocol.cpp @@ -34,8 +34,8 @@ #include #include -static const char urlC[] = "http://pastebin.ca/"; -static const char internalUrlC[] = "http://pbin.ca/"; +static const char urlC[] = "https://pastebin.ca/"; +static const char internalUrlC[] = "https://pbin.ca/"; static const char protocolNameC[] = "Pastebin.Ca"; static inline QByteArray expiryValue(int expiryDays)