We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4aa8bb7 + 8ed333e commit 5ac5ff2Copy full SHA for 5ac5ff2
kubernetes/src/apiClient.c
@@ -185,7 +185,7 @@ char *assembleHeaderField(char *key, char *value) {
185
void postData(CURL *handle, const char *bodyParameters) {
186
curl_easy_setopt(handle, CURLOPT_POSTFIELDS, bodyParameters);
187
curl_easy_setopt(handle, CURLOPT_POSTFIELDSIZE_LARGE,
188
- strlen(bodyParameters));
+ (curl_off_t)strlen(bodyParameters));
189
}
190
191
int lengthOfKeyPair(keyValuePair_t *keyPair) {
0 commit comments