Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Kill empty cleanup_digest_auth()
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
  • Loading branch information
David Woodhouse authored and David Woodhouse committed Jun 20, 2014
1 parent cca803e commit 75e7b7b
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 6 deletions.
4 changes: 0 additions & 4 deletions digest.c
Expand Up @@ -239,7 +239,3 @@ int digest_authorization(struct openconnect_info *vpninfo, struct oc_text_buf *h
buf_free(opaque);
return ret;
}

void cleanup_digest_auth(struct openconnect_info *vpninfo)
{
}
2 changes: 1 addition & 1 deletion http.c
Expand Up @@ -1715,7 +1715,7 @@ struct auth_method {
{ AUTH_TYPE_GSSAPI, "Negotiate", gssapi_authorization, cleanup_gssapi_auth },
#endif
{ AUTH_TYPE_NTLM, "NTLM", ntlm_authorization, cleanup_ntlm_auth },
{ AUTH_TYPE_DIGEST, "Digest", digest_authorization, cleanup_digest_auth },
{ AUTH_TYPE_DIGEST, "Digest", digest_authorization, NULL },
{ AUTH_TYPE_BASIC, "Basic", basic_authorization, NULL }
};

Expand Down
1 change: 0 additions & 1 deletion openconnect-internal.h
Expand Up @@ -602,7 +602,6 @@ void cleanup_gssapi_auth(struct openconnect_info *vpninfo);

/* digest.c */
int digest_authorization(struct openconnect_info *vpninfo, struct oc_text_buf *buf);
void cleanup_digest_auth(struct openconnect_info *vpninfo);

/* ssl_ui.c */
int set_openssl_ui(void);
Expand Down

0 comments on commit 75e7b7b

Please sign in to comment.