summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel Kahn Gillmor <dkg@fifthhorseman.net>2008-06-16 01:05:12 -0400
committerDaniel Kahn Gillmor <dkg@fifthhorseman.net>2008-06-16 01:05:12 -0400
commit785736d891f6c61eb5d7f4f10687ef9a0d920c3b (patch)
treeedd163a91d226242b57c41933fc072565093ca2c /src
parentb13286dc0e549347f86b64049d4eb2bd2891e1ab (diff)
openpgp2ssh whitespace and comment cleanup.
Diffstat (limited to 'src')
-rw-r--r--src/keytrans/openpgp2ssh.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/keytrans/openpgp2ssh.c b/src/keytrans/openpgp2ssh.c
index ce4d13d..511af71 100644
--- a/src/keytrans/openpgp2ssh.c
+++ b/src/keytrans/openpgp2ssh.c
@@ -45,9 +45,6 @@ int convert_private_pgp_to_x509(gnutls_x509_privkey_t* output, const gnutls_open
int subkeycount;
int found = 0;
-/* FIXME: actually respect keyid argument. At the moment, we just
- emit the primary key. */
-
init_datum(&m);
init_datum(&e);
init_datum(&d);
@@ -58,7 +55,6 @@ int convert_private_pgp_to_x509(gnutls_x509_privkey_t* output, const gnutls_open
init_datum(&y);
init_datum(&x);
-
subkeycount = gnutls_openpgp_privkey_get_subkey_count(*pgp_privkey);
if (subkeycount < 0) {
err(0,"Could not determine subkey count (got value %d)\n", subkeycount);
@@ -436,9 +432,6 @@ int main(int argc, char* argv[]) {
}
}
-
-
-
gnutls_global_deinit();
return 0;
}