diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2010-08-28 19:10:23 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2010-08-28 19:15:42 +0200 |
commit | e798a9bfd0c70eabfd446fcee42cfa243b21f069 (patch) | |
tree | 5ba6e44e8e4b40e32c6e4a6414f7e61982d31178 | |
parent | d82bc9feeecb2ec42953bbe78c243fc9deba0de1 (diff) | |
download | fetchmail-e798a9bfd0c70eabfd446fcee42cfa243b21f069.tar.gz fetchmail-e798a9bfd0c70eabfd446fcee42cfa243b21f069.tar.bz2 fetchmail-e798a9bfd0c70eabfd446fcee42cfa243b21f069.zip |
Remove dead variable/assignment.
-rw-r--r-- | gssapi.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -109,9 +109,8 @@ int check_gss_creds(const char *service, const char *hostname) OM_uint32 maj_stat, min_stat; gss_cred_usage_t cu; gss_name_t target_name; - int result; - result = import_name(service, hostname, &target_name, FALSE); + (void)import_name(service, hostname, &target_name, FALSE); (void)gss_release_name(&min_stat, &target_name); maj_stat = gss_inquire_cred(&min_stat, GSS_C_NO_CREDENTIAL, |