diff options
author | Daniel Stenberg <daniel@haxx.se> | 2016-11-23 08:30:18 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-11-24 23:58:22 +0100 |
commit | 8657c268e1938c4bd9200b7f5ab69ba156310403 (patch) | |
tree | 99d43e4150f9f57a1b62f3439da028fa38e55769 /lib/security.c | |
parent | ec0a5c96ac2f31d09651f04c8b24a30d1f6fa118 (diff) |
checksrc: white space edits to comply to stricter checksrc
Diffstat (limited to 'lib/security.c')
-rw-r--r-- | lib/security.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/security.c b/lib/security.c index 1e1c95956..350cfa745 100644 --- a/lib/security.c +++ b/lib/security.c @@ -222,7 +222,7 @@ buffer_read(struct krb5buffer *buf, void *data, size_t len) { if(buf->size - buf->index < len) len = buf->size - buf->index; - memcpy(data, (char*)buf->data + buf->index, len); + memcpy(data, (char *)buf->data + buf->index, len); buf->index += len; return len; } @@ -291,7 +291,7 @@ static void do_sec_send(struct connectdata *conn, curl_socket_t fd, prot_level = conn->command_prot; } bytes = conn->mech->encode(conn->app_data, from, length, prot_level, - (void**)&buffer); + (void **)&buffer); if(!buffer || bytes <= 0) return; /* error */ |