remove trailing whitespace

This commit is contained in:
Love Hornquist Astrand
2011-05-21 11:57:31 -07:00
parent 25e86d6f4d
commit 0879b9831a
539 changed files with 6825 additions and 6825 deletions

View File

@@ -294,7 +294,7 @@ client_mschapv2(const void *server_nonce, size_t snoncelen,
for (i = 0; i < len; i++) {
EVP_DigestUpdate(hctx, &password[i], 1);
EVP_DigestUpdate(hctx, &password[len], 1);
}
}
EVP_DigestFinal_ex(hctx, hmd, NULL);
@@ -384,7 +384,7 @@ digest_client_request(struct digest_client_request_options *opt,
client_nonce = malloc(cnoncelen);
if (client_nonce == NULL)
errx(1, "client_nonce");
cnoncelen = hex_decode(opt->client_nonce_string,
client_nonce, cnoncelen);
if (cnoncelen <= 0)
@@ -474,13 +474,13 @@ ntlm_server_init(struct ntlm_server_init_options *opt,
krb5_ntlm_init_get_targetname(context, ntlm, &type2.targetname);
type2.targetinfo.data = zero2;
type2.targetinfo.length = 2;
ret = heim_ntlm_encode_type2(&type2, &data);
if (ret)
krb5_errx(context, 1, "heim_ntlm_encode_type2");
free(type2.targetname);
/*
*
*/