summaryrefslogtreecommitdiff
path: root/lib/socks_sspi.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2011-07-04 22:10:32 +0200
committerDaniel Stenberg <daniel@haxx.se>2011-07-04 22:10:32 +0200
commitb680fd180bf31dd29d84f43d91b6ee56e62d452f (patch)
tree9ff675d7149994cd88bab0618e03ef405e8753a7 /lib/socks_sspi.c
parentdc97475dedb96b73e3688b216bac42b3084cadf0 (diff)
downloadcurl-b680fd180bf31dd29d84f43d91b6ee56e62d452f.tar.gz
code style: space between close paren and open brace
Diffstat (limited to 'lib/socks_sspi.c')
-rw-r--r--lib/socks_sspi.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/socks_sspi.c b/lib/socks_sspi.c
index 6d42af3a5..5e1bcba8e 100644
--- a/lib/socks_sspi.c
+++ b/lib/socks_sspi.c
@@ -283,7 +283,7 @@ CURLcode Curl_SOCKS5_gssapi_negotiate(int sockindex,
}
if(check_sspi_err(data,sspi_major_status,sspi_minor_status,
- "InitializeSecurityContextA") ){
+ "InitializeSecurityContextA") ) {
free(service_name);
service_name=NULL;
s_pSecFn->FreeCredentialsHandle(&cred_handle);
@@ -416,7 +416,7 @@ CURLcode Curl_SOCKS5_gssapi_negotiate(int sockindex,
&names);
s_pSecFn->FreeCredentialsHandle(&cred_handle);
if(check_sspi_err(data,sspi_major_status,sspi_minor_status,
- "QueryCredentialAttributes") ){
+ "QueryCredentialAttributes") ) {
s_pSecFn->DeleteSecurityContext(&sspi_context);
s_pSecFn->FreeContextBuffer(names.sUserName);
failf(data, "Failed to determine user name.");
@@ -499,7 +499,7 @@ CURLcode Curl_SOCKS5_gssapi_negotiate(int sockindex,
sspi_w_token[1].cbBuffer = 1;
sspi_w_token[1].pvBuffer = malloc(1);
- if(!sspi_w_token[1].pvBuffer){
+ if(!sspi_w_token[1].pvBuffer) {
s_pSecFn->FreeContextBuffer(sspi_w_token[0].pvBuffer);
s_pSecFn->DeleteSecurityContext(&sspi_context);
return CURLE_OUT_OF_MEMORY;