diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/krb5.c | 2 | ||||
| -rw-r--r-- | lib/security.c | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/lib/krb5.c b/lib/krb5.c index c5f635c1e..3491354db 100644 --- a/lib/krb5.c +++ b/lib/krb5.c @@ -253,7 +253,7 @@ krb5_auth(void *app_data, struct connectdata *conn)        if(output_buffer.length != 0) {          result = Curl_base64_encode(data, (char *)output_buffer.value, -                                    output_buffer.length, &p, &base64_sz) +                                    output_buffer.length, &p, &base64_sz);          if(result) {            Curl_infof(data,"base64-encoding: %s\n", curl_easy_strerror(result));            ret = AUTH_CONTINUE; diff --git a/lib/security.c b/lib/security.c index 595a7337e..a5567526e 100644 --- a/lib/security.c +++ b/lib/security.c @@ -287,7 +287,7 @@ static void do_sec_send(struct connectdata *conn, curl_socket_t fd,    size_t cmd_size = 0;    CURLcode error;    enum protection_level prot_level = conn->data_prot; -  bool iscmd = (prot_level == PROT_CMD)?TRUE:FALSE +  bool iscmd = (prot_level == PROT_CMD)?TRUE:FALSE;    DEBUGASSERT(prot_level > PROT_NONE && prot_level < PROT_LAST); | 
