diff options
author | Christian Stenger <christian.stenger@qt.io> | 2017-03-31 11:14:37 +0200 |
---|---|---|
committer | Christian Stenger <christian.stenger@qt.io> | 2017-03-31 10:01:15 +0000 |
commit | 8bfc47c88984ef6f2123e7d40a50b9b52c97269d (patch) | |
tree | 5cff19e4486b957004f226180b4e8d640b28016c | |
parent | 9089fbdfc5a83cc746e24f0573e351a931b7cf88 (diff) | |
download | qt-creator-8bfc47c88984ef6f2123e7d40a50b9b52c97269d.tar.gz |
CPaster: Fix accessing pastebin.com
URL now uses http with ssl.
Change-Id: Iaa2bedf6710e30a280fa72b430ec3b67bce08d65
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
-rw-r--r-- | src/plugins/cpaster/pastebindotcomprotocol.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/cpaster/pastebindotcomprotocol.cpp b/src/plugins/cpaster/pastebindotcomprotocol.cpp index 20e071d537..cdd3d18c05 100644 --- a/src/plugins/cpaster/pastebindotcomprotocol.cpp +++ b/src/plugins/cpaster/pastebindotcomprotocol.cpp @@ -37,7 +37,7 @@ enum { debug = 0 }; -static const char PASTEBIN_BASE[]="http://pastebin.com/"; +static const char PASTEBIN_BASE[]="https://pastebin.com/"; static const char PASTEBIN_API[]="api/api_post.php"; static const char PASTEBIN_RAW[]="raw/"; static const char PASTEBIN_ARCHIVE[]="archive"; |