summaryrefslogtreecommitdiff
path: root/plugins/SendScreenshotPlus/src/CSend.h
diff options
context:
space:
mode:
authorTobias Weimer <tweimer@users.noreply.github.com>2017-01-11 19:11:47 +0100
committerGitHub <noreply@github.com>2017-01-11 19:11:47 +0100
commitc8e1c429321ed8aa2efce0fc00b6dfd08f1b2735 (patch)
treed42d7f80eebd393d461d2e169de8acfab5a5b69e /plugins/SendScreenshotPlus/src/CSend.h
parentbb03623fd3ba7b9cc456da2c9504bad87b80ace0 (diff)
parente967fe266fa6211be0a490a567a66d6abf544167 (diff)
Merge pull request #669 from White-Tiger/mine
SendSS: fixed uploadpie upload by using HTTPS
Diffstat (limited to 'plugins/SendScreenshotPlus/src/CSend.h')
-rw-r--r--plugins/SendScreenshotPlus/src/CSend.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/SendScreenshotPlus/src/CSend.h b/plugins/SendScreenshotPlus/src/CSend.h
index 3d9e5594a9..512555ce49 100644
--- a/plugins/SendScreenshotPlus/src/CSend.h
+++ b/plugins/SendScreenshotPlus/src/CSend.h
@@ -128,7 +128,7 @@ class CSend {
static int GetJSONInteger(const char* json, size_t jsonlen, const char* variable,int defvalue);
static bool GetJSONBool(const char* json, size_t jsonlen, const char* variable);
void HTTPFormDestroy(NETLIBHTTPREQUEST* nlhr); /// use to free data inside "nlhr" created by HTTPFormCreate
- int HTTPFormCreate(NETLIBHTTPREQUEST* nlhr,int requestType,char* url,HTTPFormData* frm,size_t frmNum); /// returns "0" on success, Exit() will be called on failure (stop processing)
+ int HTTPFormCreate(NETLIBHTTPREQUEST* nlhr, int requestType, const char* url, HTTPFormData* frm, size_t frmNum); /// returns "0" on success, Exit() will be called on failure (stop processing)
};
#endif